import { Buffer } from 'node:buffer'; /** * Write file safely */ declare function writeFileSafe(path: string, data?: string | Buffer | Uint8Array): Promise; export { writeFileSafe };