import React from 'react'; import '../g.scss'; declare function RadioTree(props: IRadioTree): React.JSX.Element; export default RadioTree; export interface IRadioTree { scenes: NodeData[]; value: { key: string; title: string; }; sceneSelectId: string[]; change: Function; } export interface NodeData { title: string; key: string | number; folderId?: string | number; selectable?: boolean; children?: NodeData[]; }