import * as fs from 'node:fs'; import { GetFileStatsLocalOptionsType } from '../interface'; export declare class FsHelper { checkIfFileExists(filePath: string): Promise; delete(filePath: string): Promise; copy(fromPath: string, toPath: string): Promise; move(fromPath: string, toPath: string): Promise; makeDir(path: string, options?: fs.MakeDirectoryOptions): Promise; openDir(path: string, options?: fs.OpenDirOptions): Promise; stats(path: string, options?: GetFileStatsLocalOptionsType): Promise; }