import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { McpServer, McpServer$Outbound } from "./mcpserver.js"; export type McpServerList = { object: "list"; data: Array; firstId: string | null; hasMore: boolean; lastId: string | null; }; /** @internal */ export declare const McpServerList$inboundSchema: z.ZodType; /** @internal */ export type McpServerList$Outbound = { object: "list"; data: Array; first_id: string | null; has_more: boolean; last_id: string | null; }; /** @internal */ export declare const McpServerList$outboundSchema: z.ZodType; export declare function mcpServerListToJSON(mcpServerList: McpServerList): string; export declare function mcpServerListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=mcpserverlist.d.ts.map