import { Folder } from "./Folder"; export declare class ExplorerItem { name: string; parent: Folder | null; constructor(name: string); }