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