import { NavDirections } from "../useFullKeyboardListeners"; export declare function getActiveIndexFromInboundNavigation({ direction, numberOfItemsInLine, itemsCount }: { direction: NavDirections; numberOfItemsInLine: number; itemsCount: number; }): number; export declare function calcActiveIndexAfterArrowNavigation({ activeIndex, itemsCount, numberOfItemsInLine, direction, disabledIndexes, circularNavigation }: { activeIndex: number; itemsCount: number; numberOfItemsInLine: number; direction: NavDirections; disabledIndexes?: number[]; circularNavigation?: boolean; }): { isOutbound: boolean; nextIndex?: undefined; } | { isOutbound: boolean; nextIndex: number; };