import type { OpenClawConfig } from "../config/config.js"; import type { AnyAgentTool } from "./tools/common.js"; type BundleMcpToolRuntime = { tools: AnyAgentTool[]; dispose: () => Promise; }; export declare function createBundleMcpToolRuntime(params: { workspaceDir: string; cfg?: OpenClawConfig; reservedToolNames?: Iterable; }): Promise; export {};