import { FC } from 'react'; export interface DropdownMenuProps extends React.HTMLAttributes { /** Menu content */ children?: React.ReactNode; /** * Set to `none` to hide the top arrow * @deprecated We decided to remove the arrow from the dropdown menu */ arrow?: "none"; /** Optional header for the dropdown menu */ menuHeader?: string; /** * Opening position of the dropdown menu * @default bottom-right */ menuPosition?: "bottom-left" | "bottom-right" | "top-left" | "top-right"; /** * If set, the arrow will be centered when trigger button is smaller than 50px * Otherwise it will fallback to a default centering based on 32px trigger button */ parentElementRef?: React.RefObject; /** * Set a wider menu, fixed to 280px. * By default, when no width is set, the menu adjusts its width dynamically to accommodate content, within a range of 150px to 250px. **/ menuWidth?: "wide"; } export declare const DropdownMenu: FC;