import type { ComponentPropsWithRef, ElementType } from 'react'; export type ComboboxProperties = { /** Tag of the component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Dropdown menu enabling users to enter text or select items from a list. * @docs {@link https://design.visa.com/components/combobox/?code_library=react | See Docs} * @related dropdown-menu * @vgar TODO * @wcag TODO */ declare const Combobox: { ({ className, tag: Tag, ...remainingProps }: ComboboxProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Combobox;