/** * OS-aware path resolution for managed-settings.json * * Returns candidate paths in priority order. Callers should try each path and * use the first that exists and is readable. */ /** * Returns candidate paths for managed-settings.json in priority order. * Windows returns two paths: current (Program Files) first, legacy (ProgramData) second. * Other platforms return a single path (or empty array for unknown platforms). */ export declare function getManagedSettingsCandidatePaths(): string[]; /** * The legacy Windows path that Claude Code previously used. * If a file exists here it is an error — IT admin must migrate. */ export declare const WINDOWS_LEGACY_MANAGED_SETTINGS_PATH: string; //# sourceMappingURL=managed-settings-path.d.ts.map