export type TreeNode = { label: string; isExpanded: boolean; hasChildren: boolean; children: TreeNode[] | null; data?: unknown; };