import { FC } from 'react'; import { INormalizedStageEvents } from '../../../../../packages/types/multisport'; import { ISubscriberInfo } from '../../../../../packages/types'; interface Props { games: INormalizedStageEvents[]; handleClick: (info: ISubscriberInfo, clickType: string) => void; noGamesLabel?: string; isLoading?: boolean; } export declare const TournamentProgrammeEventsWrapper: FC; export {};