import { Dispatch, KeyboardEvent, SetStateAction } from 'react'; type TabContextProps = { current: number; setCurrent?: Dispatch>; focus: number; setFocus?: Dispatch>; items?: NodeListOf; uid?: string; onKeyDownHandler?: (e: KeyboardEvent) => void; gotoNext?: (refocus?: boolean) => void; goToPrev?: (refocus?: boolean) => void; dir?: string; }; export declare const TabContext: import('react').Context; export {};