/// <reference types="node" />
import fs from 'fs';
export declare const readFile: typeof fs.readFile.__promisify__;
export declare const readFileAsync: ({ filePath, }: {
    filePath: string;
}) => Promise<string>;
