/** * Configure the executor function that handles MCP tool calls. * This allows the runtime (local script, sandbox, etc.) to inject the actual execution logic. */ export declare function setToolExecutor(executor: (name: string, args: any) => Promise): void; /** * Internal utility to call MCP tools from code execution environment. * This function acts as a bridge between the TypeScript code and the actual MCP tool calls. */ export declare function callMCPTool(toolName: string, args: any): Promise; //# sourceMappingURL=client.d.ts.map