import type { ComponentPropsWithRef, ElementType } from 'react'; export type DropdownMenuProperties = { /** Scroll */ tag?: ElementType; } & ComponentPropsWithRef; /** * Interactive element enabling users to select a single option from a list. * @docs {@link https://design.visa.com/components/dropdown-menu/?code_library=react | See Docs} * @related dropdown-button, dropdown-container * @vgar TODO * @wcag TODO */ declare const DropdownMenu: { ({ className, tag: Tag, ...remainingProps }: DropdownMenuProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default DropdownMenu;