import { type InstallScope, type SkillTarget } from "./skill-roots.js"; /** * Which agent tools a developer uses is a property of the developer, not of * any one repository — so the wizard's answer is remembered per machine. * Without this, the `prepare` hook and every later non-interactive run would * silently re-derive defaults and undo the choice. */ export declare const PREFS_PATH: string; export type PreferredScope = InstallScope | "both"; export interface InstallPrefs { targets: SkillTarget[]; scope: PreferredScope; } /** Returns undefined when no usable preference has been recorded yet. */ export declare function loadInstallPrefs(home?: string): Promise; export declare function saveInstallPrefs(prefs: InstallPrefs, home?: string): Promise; //# sourceMappingURL=install-prefs.d.ts.map