import type { Config } from "../../config/schema.js"; import { type BundleMcpDiagnostic, type BundleMcpServerConfig } from "./bundle-mcp-config.js"; export type EmbeddedMcpConfig = { mcpServers: Record; diagnostics: BundleMcpDiagnostic[]; }; export declare function loadEmbeddedMcpConfig(params: { workspaceDir: string; cfg?: Config; }): EmbeddedMcpConfig;