/** * Atomically write a file by writing to a temp file then renaming. * rename() is atomic on POSIX, so concurrent writers never produce torn data. */ export declare function atomicWriteFileSync(filePath: string, content: string): void; //# sourceMappingURL=atomic-write.d.ts.map