/// import { TreeProps } from 'antd'; import { PropsTypes } from '@orca-fe/deye-typings'; export interface CurrentTreeProps extends TreeProps { options: { key: string | number; name: string; }[]; iconSrc: string; switcherIconSrc: string; } declare function Tree(props: CurrentTreeProps): JSX.Element; declare namespace Tree { var title: string; var propsDef: PropsTypes[]; } export default Tree;