export interface AtomicFileWrite { readonly relativePath: string; readonly content: string | Uint8Array; } export interface AtomicFileSet { readonly rootDir: string; readonly writes: ReadonlyArray; readonly deletes?: ReadonlyArray; readonly renameFile?: (from: string, to: string) => Promise; } export declare function commitAtomicFileSet(input: AtomicFileSet): Promise; //# sourceMappingURL=atomic-file-set.d.ts.map