import * as z from "zod/v3";
export type AgentVersion = number | string;
export type AgentsApiV1AgentsGetRequest = {
    agentId: string;
    agentVersion?: number | string | null | undefined;
};
/** @internal */
export type AgentVersion$Outbound = number | string;
/** @internal */
export declare const AgentVersion$outboundSchema: z.ZodType<AgentVersion$Outbound, z.ZodTypeDef, AgentVersion>;
export declare function agentVersionToJSON(agentVersion: AgentVersion): string;
/** @internal */
export type AgentsApiV1AgentsGetRequest$Outbound = {
    agent_id: string;
    agent_version?: number | string | null | undefined;
};
/** @internal */
export declare const AgentsApiV1AgentsGetRequest$outboundSchema: z.ZodType<AgentsApiV1AgentsGetRequest$Outbound, z.ZodTypeDef, AgentsApiV1AgentsGetRequest>;
export declare function agentsApiV1AgentsGetRequestToJSON(agentsApiV1AgentsGetRequest: AgentsApiV1AgentsGetRequest): string;
//# sourceMappingURL=agentsapiv1agentsget.d.ts.map