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