export interface ComboboxOptionsProps extends React.ComponentProps<"div"> { /** Id of the element that should label the options list */ labelledBy?: string; } export declare function ComboboxOptions(props: ComboboxOptionsProps): import("react").JSX.Element;