import type { FilePathFromRoot } from '../../types/internal'; /** * Analogue of `fs.writeFile`, working on streams (to support large files). */ export declare const writeFile: (path: FilePathFromRoot, data: Uint8Array | string) => Promise;