import { FC } from 'react'; import { INormalizeTennisDetailedEventParticipant, ISubscriberInfo } from '../../../../../../packages/types'; interface Props { homeParticipants: INormalizeTennisDetailedEventParticipant[]; awayParticipants: INormalizeTennisDetailedEventParticipant[]; startTime: string; isLive: boolean; isFinished: boolean; isCancelled: boolean; handleClick: (info: ISubscriberInfo, clickType: string) => void; } export declare const Game: FC; export {};