import type { SetupDeps, SetupResult, SetupStepResult } from "./types.js"; export interface AutoSetupSteps { detectBinary: (deps: SetupDeps) => Promise; installClaudeMem: (deps: SetupDeps) => Promise; configureMcp: (deps: SetupDeps) => Promise; copySkills: (deps: SetupDeps) => Promise; configureCommands: (deps: SetupDeps) => Promise; } /** NEVER throws — entire body wrapped in try-catch. */ export declare function autoSetup(deps: SetupDeps, steps?: AutoSetupSteps): Promise; //# sourceMappingURL=auto-setup.d.ts.map