import { DropDownProps as AntDropDownProps, Dropdown as AntDropdown } from 'antd';
import React from 'react';
export interface DropdownProps extends AntDropDownProps {
    menuExtra?: {
        position?: 'top' | 'bottom';
        divider?: boolean;
        content: React.ReactNode;
    };
}
export type DropDownProps = DropdownProps;
export type { DropdownButtonProps, DropdownButtonType } from 'antd/es/dropdown';
export declare const Dropdown: React.FC<DropdownProps> & {
    Button: typeof AntDropdown.Button;
};
