import type { ReactElement, Ref } from 'react'; import type { ComboboxItemProps } from './ComboboxItem'; export interface FilteredComboboxItemsProps { allowCreation?: boolean; children?: ReactElement[] | ReactElement; filterValue: string; filterInputRef?: Ref; maxHeight?: string; noResultsLabel?: string; onCreateClick?: (value: string) => void; onFilterChange?: (value: string) => void; } declare const FilteredComboboxItems: ({ allowCreation, children, filterValue, filterInputRef, maxHeight, noResultsLabel, onCreateClick, onFilterChange, }: FilteredComboboxItemsProps) => JSX.Element; export default FilteredComboboxItems;