import { Config, type ConfigOptions } from "./config.js"; import { Config as McpConfig } from "./mcp/config.js"; export type RuntimeConfigSources = { config: { primaryPath: string; overlayPaths: string[]; }; mcp: { primaryPath: string; overlayPaths: string[]; }; }; export declare function runtimeConfigOptions(cwd?: string): ConfigOptions; export declare function runtimeConfigSources(cwd?: string): RuntimeConfigSources; export declare function createRuntimeConfig(cwd?: string): Config; export declare function createRuntimeMcpConfig(cwd?: string): McpConfig;