export declare class NodeViewModel { name: string; isHeader?: boolean | undefined; children?: NodeViewModel[] | undefined; constructor(name: string, isHeader?: boolean | undefined, children?: NodeViewModel[] | undefined); }