export declare class FileManager { static readFile(path: string): Promise; static writeFile(path: string, contents: string): Promise; static copyFile(path1: string, path2: string): Promise; static dirExists(path: string): boolean; }