export declare class Node { name: string; parent?: Node; constructor(name: string, parent?: Node); get path(): string; get isRoot(): boolean; }