import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DeleteAgentConnectorRequest = { /** * The agent ID. */ id: string; /** * The connector ID. */ connectorId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const DeleteAgentConnectorRequest$inboundSchema: z.ZodType; /** @internal */ export type DeleteAgentConnectorRequest$Outbound = { id: string; connectorId: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const DeleteAgentConnectorRequest$outboundSchema: z.ZodType; export declare function deleteAgentConnectorRequestToJSON(deleteAgentConnectorRequest: DeleteAgentConnectorRequest): string; export declare function deleteAgentConnectorRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deleteagentconnector.d.ts.map