declare module 'fs' { function readFileAsync(path: PathLike | number, options: { encoding?: null; flag?: string; } | undefined | null): Promise; function writeFileAsync(path: PathLike | number, data: any, options?: WriteFileOptions): Promise; function unlinkAsync(path: PathLike): Promise; }