/// export declare class FileHelper { private static readFile; private static writeFile; private static listDirectory; static list(filePath: string, extensionFilter: string): Promise; static read(filePath: string): Promise; static write(filePath: string, buffer: Buffer): Promise; }