/** Write so readers never observe a partial file: write `temporary`, then * rename it over `path`. Throws on failure; the temp never leaks. */ export declare function writeFileAtomic(path: string, temporary: string, contents: string): Promise;