export { createWriteStream } from "fs-extra"; export declare function remove(fsPath: string): Promise; export declare function directoryExists(fsPath: string): Promise; export declare function fileExists(fsPath: string): Promise; export declare function ensureDir(fsPath: string): Promise; export declare function readFile(fsPath: string, encoding: string): Promise; export declare function readJsonFile(fsPath: string): Promise; export declare function writeFile(fsPath: string, content: string, encoding?: string): Promise; export declare function copy(src: string, dest: string, options?: Partial): Promise; export interface CopyOptions { exclude: string[]; }