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