type GetNextRovingFocusIndexArgs = { activeIndex: number; itemCount: number; key: string; }; export declare const getNextRovingFocusIndex: ({ activeIndex, itemCount, key, }: GetNextRovingFocusIndexArgs) => number | null; type RovingFocusKeyboardEvent = { currentTarget: Element; key: string; preventDefault: () => void; }; type CreateRovingFocusKeyDownHandlerParams void; }> = { focusItem?: (item: T, event: RovingFocusKeyboardEvent) => void; getActiveIndex?: (items: T[], event: RovingFocusKeyboardEvent) => number; getItems: (event: RovingFocusKeyboardEvent) => T[]; }; export declare const createRovingFocusKeyDownHandler: void; }>({ focusItem, getActiveIndex, getItems, }: CreateRovingFocusKeyDownHandlerParams) => (event: RovingFocusKeyboardEvent) => void; export {}; //# sourceMappingURL=a11yUtils.d.ts.map