import { type Key } from 'react'; import type { DOMRefValue } from '@react-types/shared'; import { type SpectrumComboBoxProps } from './spectrum'; export interface SearchableComboboxProps extends Omit, 'children' | 'menuTrigger' | 'onSelectionChange'> { getItemDisplayText: (item: TItem | null | undefined) => string | null; getKey: (item: TItem | null | undefined) => TKey | null; scrollRef: React.RefObject; onSelectionChange: (key: TKey | null) => void; } export declare function SearchableCombobox({ scrollRef, getItemDisplayText, getKey, ...props }: SearchableComboboxProps): JSX.Element; export default SearchableCombobox; //# sourceMappingURL=SearchableCombobox.d.ts.map