export declare class FileSystemNode { path: string; parent: FileSystemNode; children: Array; constructor(path: string, parent: FileSystemNode); }