import { MouseEventHandler, RefObject } from 'react'; import type { TabItemRefs } from '../TabsContext'; export type UseTabItemProps = { refs: TabItemRefs | null; innerRef: RefObject; orientation?: 'horizontal' | ' vertical'; selected?: boolean; disabled?: boolean; itemIndex?: number; onIndexChange?: (index: number) => void; onClick?: MouseEventHandler; }; export declare const useTabItem: ({ refs, innerRef, itemIndex, selected, orientation, disabled, onIndexChange, onClick, }: UseTabItemProps) => { hasKeyNavigation: boolean; navigationTabIndex: number; onItemFocus: import("react").FocusEventHandler; handleClick: (event: React.MouseEvent) => void; }; //# sourceMappingURL=useTabItem.d.ts.map