import { SDKOptions, IConfigEntityLinksOptional } from '../../../../../packages/types'; import { IGeneralSubscriberInfo } from '../../../../../packages/constants/subscribeTypes'; interface ICompetition { id: string; title: string; logo: string; urlTarget: string; url: string; } interface IUsePlayoffCompetitionArgs extends IGeneralSubscriberInfo { dataCompetition?: string; dataSeason?: string; dataStage?: string; sdkOptions: SDKOptions; dataEntityLinks?: IConfigEntityLinksOptional; } export declare const usePlayoffCompetition: ({ dataCompetition, dataSeason, dataEntityLinks, sdkOptions, dataWidgetId, dataWidgetSport, dataWidgetCuid, subscribers, }: IUsePlayoffCompetitionArgs) => { isLoading: boolean; competition: ICompetition | undefined; stages: { name: string; id: string; available_playoffs: boolean; }[]; seasonOptions: { label: string; value: string; }[]; stageOptions: { label: string; value: string; }[]; currentSeason: string; currentStage: string; handleClick: (info: import("../../../../../packages/types").ISubscriberInfo, clickType: string) => void; }; export {};