import { UseInteractionsReturn } from '@floating-ui/react'; import { TSizeAll } from '../../types'; export interface SelectContextValue { activeIndex: number | null; selectedIndexes: number[]; getItemProps?: UseInteractionsReturn['getItemProps']; handleSelect: (index: number) => void; size: TSizeAll; } export declare const SelectContext: import('react').Context; export declare const useSelectContext: () => SelectContextValue; //# sourceMappingURL=SelectContext.d.ts.map