/** Snapshot of the working directory: each entry's relative path and the kind of entry it was. */ export type WorkingDirectorySnapshot = ReadonlyMap; type WorkingDirectoryEntryKind = 'directory' | 'file' | 'symlink' | 'other'; export declare function snapshotWorkingDirectory(cwd: string): Promise; export declare function cleanWorkingDirectory(cwd: string, snapshot: WorkingDirectorySnapshot): Promise; export {};