import { FC, ReactElement } from 'react'; import { MenuType } from '../types/MenuType'; interface DropdownMenuProps { menuType: MenuType; menuIcon: ReactElement; /** When true, the entire icon button is hidden if there are no menu options. Defaults to false. */ hideWhenEmpty?: boolean; /** Optional callback invoked when the icon button is clicked. When provided alongside menu options, the action fires first and the dropdown still opens. When there are no menu options, only the action fires. */ action?: () => void; } export declare const DropdownMenu: FC; export default DropdownMenu; //# sourceMappingURL=DropdownMenu.d.ts.map