import { ComboboxItem } from '../types'; export type ItemWithIndex = { item: Item; index: number; }; export type UseItemsReturn = { byValue: Record>; }; interface UseItemProps { rawItems: Item[]; } export declare const useItems: ({ rawItems, }: UseItemProps) => { items: Item[]; getItemByValue: (value: string) => ItemWithIndex | null; }; export {};