import './index.less';
import RcDropdown from 'rc-dropdown';
import React from 'react';
export interface DropdownProps extends React.ComponentProps<typeof RcDropdown> {
    className?: string;
    trigger?: ('click' | 'hover' | 'contextMenu')[];
    overlay: React.ReactElement | (() => React.ReactElement);
    visible?: boolean;
    placement?: 'bottom' | 'bottomLeft' | 'bottomRight' | 'top' | 'topLeft' | 'topRight';
    onVisibleChange?: (visible: boolean) => void;
}
declare const Dropdown: React.ForwardRefExoticComponent<import("rc-dropdown/lib/Dropdown").DropdownProps & React.RefAttributes<unknown>> & React.NamedExoticComponent<DropdownProps> & {
    readonly type: (props: DropdownProps) => React.JSX.Element;
};
export default Dropdown;
