import { type KeyboardEventHandler } from 'react'; /** * A hook to handle the arrow keys for the TabItem component. * * @returns The event handlers for the arrow keys. */ export declare function useArrowKeyHandler(): { onKeyDown: KeyboardEventHandler; };