/** Get the platform-appropriate base directory for config files */
export declare function getConfigBaseDir(): string;
/** Primary config directory: /.cortex-cli/ */
export declare function getPrimaryConfigDir(): string;
/** Legacy config directory (read-only fallback): /.config/cortex-cli/ */
export declare function getLegacyConfigDir(): string;
/**
* Verify that the resolved config directory is writable.
* Returns the directory path if it is accessible or can be created,
* throws ConfigBaseDirError if the directory exists but is not writable.
*/
export declare function ensureConfigDirWritable(dir: string): string;
//# sourceMappingURL=paths.d.ts.map