import type { Snapshot } from './snapshot.js'; /** * Restore a file from snapshot * Returns true if restored, false if no snapshot exists */ export declare function restoreFile(snapshot: Snapshot, filePath: string, rootDir: string): boolean; /** * Restore all files from snapshot * Returns count of restored files */ export declare function restoreAll(snapshot: Snapshot, rootDir: string): number; /** * Check what files would be restored */ export declare function previewRestore(snapshot: Snapshot, rootDir: string): string[]; //# sourceMappingURL=restore.d.ts.map