/// import { PathLike } from 'fs'; export { PathLike }; export declare type WriteFileOptions = { encoding?: string | null; mode?: number | string; flag?: string; } | string | null; /** * * @param path Full path to the file to be written, including the file name and extension */ export declare function writeFile(path: PathLike, data: any, options?: WriteFileOptions): Promise<{}>;