/// import fs from 'fs'; import { IFile } from '../interface'; export declare class File { constructor(); readFileSync(filePath: string): string; existsSync(filePath: string): boolean; mkdirSync(dir: string): string | undefined; readAndParseJsonFileSync(filePath: string): T; createFile(file: IFile): Promise; createFiles(files: Array): Promise; createReadStream(filePath: string): Promise; }