import type { BoxProps } from "@twilio-paste/box"; import type { HTMLPasteProps } from "@twilio-paste/types"; import * as React from "react"; import type { VirtualItem } from "react-virtual"; export interface ComboboxListboxOptionProps extends HTMLPasteProps<"li"> { children: NonNullable; /** * * @type {boolean} * @memberof ComboboxListboxOptionProps */ highlighted?: boolean; /** * * @type {boolean} * @memberof ComboboxListboxOptionProps */ selected?: boolean; /** * * @default false * @type {boolean} * @memberof ComboboxListboxOptionProps */ disabled?: boolean; /** * * @default "default" * @type {"default" | "groupOption"} * @memberof ComboboxListboxOptionProps */ variant: "default" | "groupOption"; /** * * @type {VirtualItem["start"]} * @memberof ComboboxListboxOptionProps */ startHeight?: VirtualItem["start"]; /** * Overrides the default element name to apply unique styles with the Customization Provider * * @default "COMBOBOX" * @type {BoxElementProps["element"]} * @memberof ComboboxListboxOptionProps */ element?: BoxProps["element"]; } declare const ComboboxListboxOption: React.ForwardRefExoticComponent>; export { ComboboxListboxOption }; //# sourceMappingURL=ComboboxListboxOption.d.ts.map