import { MenuProps } from '../../common/components/menu/Menu'; import { PopoverPortalProps } from '../../common/components/popover/PopoverPortal'; export interface DropdownProps extends Pick { content: MenuProps; } /** * The `` component is used to display a list of actions related to a specific element.
It is used in combination with the `useDropdown` hook. */ declare const Dropdown: { ({ content, ...rest }: DropdownProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Dropdown;