export declare function isDirectoryEmpty(path: string): Promise; export declare function makeDirectory(path: string): boolean; export declare function isFileExists(path: string): boolean; export declare function loadFile(path: string): Promise; export declare function loadJSON(path: string): Promise; export declare function loadMarkdown(path: string): Promise; export declare function removeFile(path: string): Promise; export declare function saveFile(path: string, content: string): Promise; export declare function replaceInFile(path: string, keyValues: { search: string; replace: string; }[]): Promise;