import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetAgentVersionRequest = { agentId: string; version: number; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const GetAgentVersionRequest$inboundSchema: z.ZodType; /** @internal */ export type GetAgentVersionRequest$Outbound = { agent_id: string; version: number; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const GetAgentVersionRequest$outboundSchema: z.ZodType; export declare function getAgentVersionRequestToJSON(getAgentVersionRequest: GetAgentVersionRequest): string; export declare function getAgentVersionRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getagentversion.d.ts.map