import { Z as ZpiClientOptions } from './config-DRP0L5Vm.js'; export { p as ZpiMcpError } from './errors-DdzqYqxK.js'; interface McpTool { name: string; description?: string; inputSchema?: unknown; } interface McpClient { listTools(): Promise; callTool(name: string, args?: Record): Promise; } declare function createMcpClient(options: ZpiClientOptions): McpClient; declare const PROTOCOL_VERSION = "2025-06-18"; export { type McpClient, type McpTool, PROTOCOL_VERSION, createMcpClient };