import { type BoxProps } from "@twilio-paste/box"; import type { HTMLPasteProps } from "@twilio-paste/types"; import * as React from "react"; import type { ComboboxProps } from "../types"; export interface ComboboxListboxGroupProps extends Pick, HTMLPasteProps<"ul"> { children: NonNullable; /** * Overrides the default element name to apply unique styles with the Customization Provider * * @type {string | undefined} * @memberof ComboboxListboxGroupProps */ groupName?: string | undefined; /** * Overrides the default element name to apply unique styles with the Customization Provider * * @default "COMBOBOX" * @type {BoxElementProps["element"]} * @memberof ComboboxListboxGroupProps */ element?: BoxProps["element"]; } declare const ComboboxListboxGroup: React.ForwardRefExoticComponent>; export { ComboboxListboxGroup }; //# sourceMappingURL=ComboboxListboxGroup.d.ts.map