export declare class FileService { constructor(); readFile(path: string): Promise; outputFile(path: string, content: string): Promise; readJson(path: string): Promise; copy(sources: string[], destDir: string): Promise; remove(path: string): Promise; }