export declare const BRAND_CONFIG_DIR_INTERNAL: string; export declare const ENV_HOME: string; export declare const ENV_CONFIG_DIR: string; export declare const MAX_SANITIZED_LENGTH = 200; export declare function homedir(): string; /** * Resolve the config directory that contains `projects/`. * * Resolution order: * 1. `QODER_CONFIG_DIR` — full path override shared with qodercli. When set, * `BRAND_CONFIG_DIR_INTERNAL` is NOT appended — the value is used as-is. * 2. `/` — default, aligned with * qodercli's `Storage.getGlobalConfigDir()`. */ export declare function getConfigDir(): string; export declare function getTranscriptProjectsDir(): string; export declare function sanitizePath(name: string): string;