import type { RefObject } from "react"; import type { TabsProps } from "./-types"; type UseTabFocusOptions = Pick & { tablistRef: RefObject; tabAttribute: string; }; export declare const useTabFocus: ({ tabs, activeTab, tablistRef, tabAttribute, }: UseTabFocusOptions) => { onBlur: (e: React.FocusEvent) => void; onTabFocus: (index: number) => void; getTabIndex: (index: number) => 0 | -1; focusNextTab: (direction: 1 | -1) => void; }; export {};