/// <reference types="node" />
import * as fs from 'fs';
export declare const fsWrapper: {
    readdirAsync: (...callArgs: any[]) => Promise<string[]>;
    readFileAsync: (...callArgs: any[]) => Promise<string>;
    writeFileAsync: (...callArgs: any[]) => Promise<undefined>;
    mkdirpAsync: (...callArgs: any[]) => Promise<undefined>;
    doesPathExistSync: typeof fs.existsSync;
    rmdirSync: typeof fs.rmdirSync;
    removeFileAsync: (...callArgs: any[]) => Promise<undefined>;
    statAsync: (...callArgs: any[]) => Promise<fs.Stats>;
    appendFileAsync: (...callArgs: any[]) => Promise<undefined>;
    accessAsync: (...callArgs: any[]) => Promise<boolean>;
    doesFileExistAsync: (filePath: string) => Promise<boolean>;
};
//# sourceMappingURL=fs_wrapper.d.ts.map