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