///
import { MakeDirectoryOptions, promises as fsPromises } from 'fs';
export declare function pathExists(path: string): Promise;
export declare function readJSONSync(path: string): T;
export declare function readJSON(path: string): Promise;
export declare function writeJSON(path: string, data: T, replacer?: (this: any, key: string, value: any) => any, space?: string | number): Promise;
export declare const writeFile: typeof fsPromises.writeFile;
export declare function mkdir(path: string, options?: MakeDirectoryOptions): Promise;