import type { Option, Selection } from '../../types'; interface Props { flatOptions: Option[]; selection: Selection; isOpen: boolean; } declare const useHighlightedIndex: ({ flatOptions, isOpen, selection }: Props) => readonly [number, (nextIndex: number) => false | void]; export default useHighlightedIndex; //# sourceMappingURL=use-highlighted-index.d.ts.map