import type { NavigationHookProps, NavigationHookResult } from "./navigationTypes"; import { type SelectionStrategy } from "./selectionTypes"; export declare const LIST_FOCUS_VISIBLE = -2; export declare const useKeyboardNavigation: ({ containerRef, defaultHighlightedIndex, disableHighlightOnFocus, highlightedIndex: highlightedIndexProp, indexPositions, onHighlight, onKeyboardNavigation, restoreLastFocus, selected, }: NavigationHookProps) => NavigationHookResult;