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 CreateAgentConnectorRequest = { /** * The agent ID. */ id: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; createAgentConnectorRequest: components.CreateAgentConnectorRequest; }; /** @internal */ export declare const CreateAgentConnectorRequest$inboundSchema: z.ZodType; /** @internal */ export type CreateAgentConnectorRequest$Outbound = { id: string; "X-On-Behalf-Of"?: string | undefined; CreateAgentConnectorRequest: components.CreateAgentConnectorRequest$Outbound; }; /** @internal */ export declare const CreateAgentConnectorRequest$outboundSchema: z.ZodType; export declare function createAgentConnectorRequestToJSON(createAgentConnectorRequest: CreateAgentConnectorRequest): string; export declare function createAgentConnectorRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createagentconnector.d.ts.map