import { FC } from 'react'; interface TreeListDropBoxProps { containerNode: any; className?: any; style?: any; containerId: string; addExpandedKey: (id: string) => void; } declare const TreeListDropBox: FC; export default TreeListDropBox;