import { IFile } from "./interfaces"; /** * */ export declare class FileService { /** * * @param file */ exists(file: IFile): Promise; read(file: IFile, encoding?: string): Promise; write(file: IFile, data: string, encoding?: string): Promise; remove(file: IFile): Promise; }