export declare class TreeNode { children: TreeNode[]; id: string; name: string; parentId?: string; }