import { ILabels } from '../types'; interface IUsePillsArgs { selectedPillTab: string; setSelectedPillTab: (value: string) => void; isFetching: boolean; hasFixtures?: boolean; hasResults?: boolean; dataLabels?: ILabels | null | undefined; } export declare const useTabsController: ({ selectedPillTab, setSelectedPillTab, hasFixtures, hasResults, isFetching, dataLabels, }: IUsePillsArgs) => { pillTabOptions: { label: string; value: string; isDisabled: boolean; }[]; }; export {};