import { KeyboardEvent } from 'react'; import { InternalSelectionType } from '../interfaces'; export declare function useSelectionFocusMove(selectionType: undefined | InternalSelectionType, totalItems: number): { moveFocusDown?: undefined; moveFocusUp?: undefined; moveFocus?: undefined; } | { moveFocusDown: (event: KeyboardEvent) => void; moveFocusUp: (event: KeyboardEvent) => void; moveFocus: (sourceElement: HTMLElement, fromIndex: number, direction: -1 | 1) => void; };