import { LLMTool } from "./client.js"; import { MCPManager, MCPTool } from "../mcp/client.js"; export declare const LLM_TOOLS: LLMTool[]; export declare function getMCPManager(): MCPManager; export declare function initializeMCPServers(debugLogFile?: string): Promise; export declare function convertMCPToolToLLMTool(mcpTool: MCPTool): LLMTool; export declare function addMCPToolsToLLMTools(baseTools: LLMTool[]): Promise; export declare function getAllLLMTools(): Promise;