/** @internal */ import { BaseInputProps } from '../../common/types/input'; import { RefObject } from 'react'; import { ComboboxItem } from './Combobox'; interface ComboboxListItemProps { feSize?: BaseInputProps['feSize']; handleClickedItem: (value: string) => void; inputRef: RefObject; inputValue: string; item: ComboboxItem; multiselect?: boolean; } declare const ComboboxListItem: { ({ feSize, handleClickedItem, inputRef, inputValue, item, multiselect, }: ComboboxListItemProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default ComboboxListItem;