/// import { MakeDirectoryOptions } from 'fs'; export declare function pathExists(path: string): Promise; export declare function readJSONSync(path: string): any; 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 function mkdir(path: string, options?: MakeDirectoryOptions): Promise;