import fs from "fs-plus"; declare const fsAdditions: { list(directoryPath: string): string[]; listRecursive(directoryPath: string): string[]; cp(sourcePath: string, destinationPath: string, callback: (err: Error | Error[]) => void): void; mv(sourcePath: fs.PathLike, destinationPath: string, callback: fs.NoParamCallback): void; }; declare type ProxyFS = typeof import("fs-plus") & typeof fsAdditions; declare const _default: ProxyFS; export default _default;