import type { OpenClawConfig } from "../config/types.openclaw.js"; import type { BundleMcpDiagnostic, BundleMcpServerConfig } from "../plugins/bundle-mcp.js"; type EmbeddedPiMcpConfig = { mcpServers: Record; diagnostics: BundleMcpDiagnostic[]; }; export declare function loadEmbeddedPiMcpConfig(params: { workspaceDir: string; cfg?: OpenClawConfig; }): EmbeddedPiMcpConfig; export {};