import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const ListMcpServersQueryParamOrder: { readonly Asc: "asc"; readonly Desc: "desc"; }; export type ListMcpServersQueryParamOrder = ClosedEnum; export type ListMcpServersRequest = { limit?: number | undefined; after?: string | undefined; order?: ListMcpServersQueryParamOrder | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const ListMcpServersQueryParamOrder$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListMcpServersQueryParamOrder$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListMcpServersRequest$inboundSchema: z.ZodType; /** @internal */ export type ListMcpServersRequest$Outbound = { limit: number; after?: string | undefined; order: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListMcpServersRequest$outboundSchema: z.ZodType; export declare function listMcpServersRequestToJSON(listMcpServersRequest: ListMcpServersRequest): string; export declare function listMcpServersRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listmcpservers.d.ts.map