import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { MCPTool, MCPTool$Outbound } from "./mcptool.js"; /** * MCP list tools item: Result of discovering available tools from an MCP server. */ export type MCPListTools = { type: "mcp_list_tools"; id: string; serverLabel: string; tools: Array; error?: string | undefined; }; /** @internal */ export declare const MCPListTools$inboundSchema: z.ZodType; /** @internal */ export type MCPListTools$Outbound = { type: "mcp_list_tools"; id: string; server_label: string; tools: Array; error?: string | undefined; }; /** @internal */ export declare const MCPListTools$outboundSchema: z.ZodType; export declare function mcpListToolsToJSON(mcpListTools: MCPListTools): string; export declare function mcpListToolsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=mcplisttools.d.ts.map