@visa/nova-react
Version:
Visa Product Design System Nova React library. Compatible with React ^19.
18 lines (17 loc) • 673 B
TypeScript
import type { ComponentPropsWithRef, ElementType } from 'react';
export type ComboboxProperties<ET extends ElementType = 'div'> = {
/** Tag of the component */
tag?: ElementType;
} & ComponentPropsWithRef<ET>;
/**
* 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: {
<ET extends ElementType = "div">({ className, tag: Tag, ...remainingProps }: ComboboxProperties<ET>): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
export default Combobox;