/** * config-loader.ts — shared config loading for cortex-engine. * * Config search order: * 1. .fozikio/agent.yaml (new workspace format) * 2. .fozikio/config.yaml (legacy workspace format — backward compatible) * 3. cortex.config.yaml (project root) * 4. config.yaml (project root) * 5. defaults (sqlite + ollama) */ import type { CortexConfig } from '../core/config.js'; export declare function loadConfig(cwd?: string, agentName?: string): CortexConfig; //# sourceMappingURL=config-loader.d.ts.map