import * as z from "zod/v4"; 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; 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; export declare function agentsApiV1AgentsGetRequestToJSON(agentsApiV1AgentsGetRequest: AgentsApiV1AgentsGetRequest): string; //# sourceMappingURL=agentsapiv1agentsget.d.ts.map