import React from 'react'; import type { ListboxValue } from '../Listbox/ListboxOption'; import type { ContentNode } from '../../types'; export type ComboboxValue = Exclude; interface ComboboxOptionProps extends React.HTMLAttributes { disabled?: boolean; value?: ComboboxValue; formValue?: ComboboxValue; description?: ContentNode; removeOptionLabel?: string; children: string; } declare const ComboboxOption: React.ForwardRefExoticComponent>; export default ComboboxOption;