import fs from 'fs'; import { IFsHelper } from '../application/index'; export declare class FsHelper implements IFsHelper { exists(sourcePath: string): Promise; dirname(sourcePath: string): string; basename(sourcePath: string): string; join(...paths: string[]): string; extname(sourcePath: string): string; move(sourcePath: string, destPath: string): Promise; create(sourcePath: string): Promise; resolve(source: string): string; read(filePath: string): Promise; remove(sourcePath: string): Promise; removeDir(directoryPath: string): Promise; copy(src: string, dest: string): Promise; write(sourcePath: string, content: string): Promise; writeBinary(sourcePath: string, content: Buffer): Promise; lstat(sourcePath: string): Promise; readdir(sourcePath: string): Promise; isDirectory(sourcePath: string): Promise; } //# sourceMappingURL=fs.d.ts.map