import React from 'react'; import { DropDownProps } from 'antd'; import { LingXiEdFC } from '@lingxiteam/types'; interface ContainerDropBoxProps extends React.HTMLProps { _component: any; } interface menuData { disabled: boolean; key: string | number; title: string; children: any[]; } export interface MyDropdownProps extends DropDownProps { ContainerDropBox: React.FC; name: string; _component: any; children: React.ReactNode; treeData: menuData[]; style: React.CSSProperties | undefined; className: any; isUsePrimary?: boolean; clickClose: any; menuType: any; trigger: any; buttonType: any; selectable: any; buttonIcon: any; arrow: any; color?: any; icon?: any; } declare const Dropdown: LingXiEdFC; export default Dropdown;