/// export declare class FileUtils { static getDirectories(source: string): any; static getFiles(source: string): any; static parseJSONFile(source: string): any; static writeFile(buffer: Buffer, path: string): Promise; static readFile(path: string): Promise; static deleteFile(path: string): Promise; static getFileSize(path: string): Promise; static exists(path: string): Promise; }