import type { DropDownProps } from 'antd/es/dropdown';
import type { MenuProps } from 'antd/es/menu';
export declare type DropdownItems = MenuProps['items'];
export interface IDropdownProProps {
    className?: DropDownProps['className'];
    overlayStyle?: DropDownProps['overlayStyle'];
    overlayClassName?: DropDownProps['overlayClassName'];
    arrow?: DropDownProps['arrow'];
    autoFocus?: DropDownProps['autoFocus'];
    disabled?: DropDownProps['disabled'];
    destroyPopupOnHide?: DropDownProps['destroyPopupOnHide'];
    placement?: DropDownProps['placement'];
    trigger?: DropDownProps['trigger'];
    open?: DropDownProps['open'];
    menu: DropDownProps['menu'];
    children: DropDownProps['children'];
    getPopupContainer?: DropDownProps['getPopupContainer'];
    onOpenChange?: DropDownProps['onOpenChange'];
    dropdownRender?: DropDownProps['dropdownRender'];
}
