import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type MCPTool = { name: string; inputSchema: { [k: string]: any; }; annotations?: { [k: string]: any; } | undefined; description?: string | undefined; }; /** @internal */ export declare const MCPTool$inboundSchema: z.ZodType; /** @internal */ export type MCPTool$Outbound = { name: string; input_schema: { [k: string]: any; }; annotations?: { [k: string]: any; } | undefined; description?: string | undefined; }; /** @internal */ export declare const MCPTool$outboundSchema: z.ZodType; export declare function mcpToolToJSON(mcpTool: MCPTool): string; export declare function mcpToolFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=mcptool.d.ts.map