/** * Init Command - drift init * * Initialize Drift in a project by creating the .drift/ directory * and running an initial scan. * * @requirements 29.1, 38.1 */ import { Command } from 'commander'; export interface InitOptions { /** Initialize from Cheatcode2026 scaffold */ fromScaffold?: boolean; /** Skip interactive prompts */ yes?: boolean; /** Enable verbose output */ verbose?: boolean; } export declare const initCommand: Command; //# sourceMappingURL=init.d.ts.map