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