interface FileEntry { sha256: string; size: number; mtimeMs: number; } interface SensitiveEntry { exists: boolean; size: number; mtimeMs: number; contentRead: false; } export interface SnapshotData { version: string; label: string; createdAt: string; cwd: string; git: { branch: string | null; commit: string | null; status: string | null; available: boolean; }; files: Record; sensitiveFiles: Record; } export declare function runSnapshot(label: string): void; export {}; //# sourceMappingURL=snapshot.d.ts.map