import type { Tool } from "../schemas/tools"; import type { McpClientInput } from "../schemas/mcp-adapter"; import type { ToolHandler } from "./tool-helpers"; export type { McpClient, McpClientInput } from "../schemas/mcp-adapter"; export type ToolHandlerMap = Map; export type McpToolsResult = { tools: Tool[]; handlers: ToolHandlerMap; }; export declare function getMcpToolsWithHandlers(clients: McpClientInput[]): Promise; export declare function getMcpTools(clients: McpClientInput[]): Promise; //# sourceMappingURL=mcp-adapter.d.ts.map