import type { ComponentPropsWithRef, ElementType } from 'react'; export type ListboxProperties = { /** Multiselect */ multiselect?: boolean; /** Scroll */ scroll?: boolean; /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Container that displays a list of items available for selection. * @docs {@link https://design.visa.com/components/listbox/?code_library=react | See Docs} * @related listbox-container, listbox-item, use-listbox * @vgar TODO * @wcag TODO */ declare const Listbox: { ({ className, multiselect, scroll, tag: Tag, ...remainingProps }: ListboxProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Listbox;