import { UseInteractionsReturn } from '@floating-ui/react'; import { TSizeAll } from '../../types'; export interface ComboboxContextValue { activeIndex: number | null; selectedIndexes: number[]; getItemProps?: UseInteractionsReturn['getItemProps']; handleSelect: (index: number) => void; setSearchTerm: (value: string) => void; searchTerm: string; size: TSizeAll; allowMultiple: boolean; showSearch: boolean; } export declare const ComboboxContext: import('react').Context; export declare const useComboboxContext: () => ComboboxContextValue; //# sourceMappingURL=ComboboxContext.d.ts.map