/// import './index.less'; interface DeviceTreeProps { width?: number | string; formConfig?: string[]; activeDevice?: string[]; selectable?: boolean; checkable?: boolean; onCheck?: (key: string[]) => void; onSelect?: (key: string) => void; selectedKey?: string; checkedKeys?: string[]; defaultExpandedKeys?: string[]; onChange?: (data: DataNode[]) => void; onClick?: (e: DataNode) => void; } interface DataNode { title: string; key: string; isLeaf?: boolean; children?: DataNode[]; level: number; [key: string]: any; } export default function DeviceTree(props: DeviceTreeProps): JSX.Element; export {};