/// import { Stats } from "node:fs"; import { FolderPath } from "../folder-path/folder-path.js"; import { IFolder } from "./i-folder.js"; import { IFolderOptions } from "./i-folder-options.js"; export declare class Folder implements IFolder { path: FolderPath; root: IFolder | undefined; stats: Stats | undefined; constructor(options: IFolderOptions); }