import type { BoxProps } from "@twilio-paste/box"; import type { HTMLPasteProps } from "@twilio-paste/types"; import * as React from "react"; export interface ComboboxListboxProps extends HTMLPasteProps<"ul"> { children: NonNullable; /** * * @type {boolean} * @memberof ComboboxListboxProps */ hidden: boolean; /** * Overrides the default element name to apply unique styles with the Customization Provider * * @default "COMBOBOX_LISTBOX" * @type {BoxElementProps["element"]} * @memberof ComboboxListboxProps */ element?: BoxProps["element"]; } declare const ComboboxListbox: React.ForwardRefExoticComponent>; export { ComboboxListbox }; //# sourceMappingURL=ComboboxListbox.d.ts.map