import { Dispatch, SetStateAction } from 'react'; import { InternalTabProps } from '../InternalTabTypes'; export declare function getNextTabIndex(tabs: InternalTabProps[], activeTabIndex: number): number; export declare function getPreviousTabIndex(tabs: InternalTabProps[], activeTabIndex: number): number; export declare function activatePreviousTab(tabs: InternalTabProps[], activeTabIndex: number, setActiveTabIndex: Dispatch>, setActivePanelIndex?: Dispatch>): boolean; export declare const isTabLink: (tabs: InternalTabProps[], activeTabIndex: number) => boolean;