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 UpdateMcpServerRequest = { serverId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; updateMcpServerRequest: components.UpdateMcpServerRequest; }; /** @internal */ export declare const UpdateMcpServerRequest$inboundSchema: z.ZodType; /** @internal */ export type UpdateMcpServerRequest$Outbound = { server_id: string; "X-On-Behalf-Of"?: string | undefined; UpdateMcpServerRequest: components.UpdateMcpServerRequest$Outbound; }; /** @internal */ export declare const UpdateMcpServerRequest$outboundSchema: z.ZodType; export declare function updateMcpServerRequestToJSON(updateMcpServerRequest: UpdateMcpServerRequest): string; export declare function updateMcpServerRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updatemcpserver.d.ts.map