import { AbsoluteFilePath } from './Types'; export interface AtomicFileWrite { (tmpPath: AbsoluteFilePath, finalPath: AbsoluteFilePath, contents: string[]): Promise; } export default function atomicFileWrite(tmpPath: AbsoluteFilePath, finalPath: AbsoluteFilePath, contents: string[]): Promise;