/// <reference types="node" />
import * as fs from 'fs';
export declare function readFileSync(...args: Parameters<typeof fs.readFileSync>): string | Buffer;
export declare function readFile(filePath: string): Promise<string>;
export declare function writeFile(filePath: string, data: string): Promise<void>;
