/** * Init Command Module * * Scaffolds Lisa project structure including .lisa, .claude, .opencode directories. * Storage is handled by git-mem (git notes) - no Docker or external services needed. */ import type { ICliServices } from './cli-services'; import { type CliSupport } from './shared'; /** * Clean up previous Lisa installation before upgrade. */ export declare function cleanupPreviousInstall(skillsDir: string, verbose?: boolean): Promise<{ backedUp: string[]; removed: string[]; }>; export interface IInitOptions { force?: boolean; cwd: string; yes?: boolean; isolated?: boolean; cliSupport?: CliSupport[]; verbose?: boolean; /** Skip PR polling setup prompt */ skipPrPolling?: boolean; /** Enable PR polling (for -y mode) */ enablePrPolling?: boolean; /** Enable desktop notifications for PR polling */ prPollingNotify?: boolean; } export declare function initCommand(opts: IInitOptions, services: ICliServices): Promise; //# sourceMappingURL=init.d.ts.map