/** * config-utils.ts — shared config path utilities for cortex-engine CLI. * * Extracted from config-cmd.ts so agent-cmd.ts can reuse them. */ /** * Find the config file path — mirrors the search order in config-loader.ts. * Checks agent.yaml (new format) before config.yaml (legacy format). * Returns null if no config file exists (defaults are in use). */ export declare function findConfigPath(cwd?: string): string | null; /** * Default write location when no config exists yet. * Uses agent.yaml (new format). */ export declare function defaultConfigPath(cwd?: string): string; //# sourceMappingURL=config-utils.d.ts.map