/// export type ValueType = string | number; export type BizTreeTableDataItem = { label?: React.ReactNode; value?: ValueType; disabled?: boolean; children?: BizTreeTableDataItem[]; [key: string]: any; }; export type BizTreeTableData = BizTreeTableDataItem[]; export type BizTreeTableFieldNames = { label: string; value: string; children: string; };