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