import { ReactNode } from 'react'; import AntDropdown, { DropDownProps } from 'antd/es/dropdown'; interface InternalDropdownProps extends DropDownProps { children?: ReactNode; } declare const InternalDropdown: (props: InternalDropdownProps) => JSX.Element; declare type InternalDropdownType = typeof InternalDropdown; interface DropdownInterface extends InternalDropdownType { Button: typeof AntDropdown.Button; } declare const Dropdown: DropdownInterface; export default Dropdown;