/** * CLI Recovery Commands * * Manual recovery operations for Hari Seldon */ export interface RecoveryCommandOptions { repoPath: string; worktreeBaseDir?: string; dryRun?: boolean; autoCleanup?: boolean; force?: boolean; } /** * Show current state and recovery status */ export declare function statusCommand(options: RecoveryCommandOptions): Promise; /** * List orphaned resources */ export declare function orphansListCommand(options: RecoveryCommandOptions): Promise; /** * Clean up orphaned resources */ export declare function orphansCleanupCommand(options: RecoveryCommandOptions): Promise; /** * Run full recovery */ export declare function recoverCommand(options: RecoveryCommandOptions): Promise; /** * Export state to a file */ export declare function stateExportCommand(options: RecoveryCommandOptions & { outputPath: string; }): Promise; /** * Import state from a file */ export declare function stateImportCommand(options: RecoveryCommandOptions & { inputPath: string; }): Promise; //# sourceMappingURL=recovery-commands.d.ts.map