import { copy } from "fs-extra"; import { IFS } from "./interfaces"; export declare class FS implements IFS { copyPath: typeof copy; dirExists(filePath: string): Promise; fileExists(filePath: string): Promise; readFile(filePath: string): Promise; writeFile(filePath: string, content: string): Promise; readJSON(filePath: string): Promise; writeJSON(filePath: string, item: T): Promise; }