import React, { FC } from 'react'; import { viusage } from '../../../../../util'; import { ontology } from '../../../../../util'; export declare const NCAAB_MENS_GAME_OF_THE_DAY_CONTAINER_CLASSNAMES: string[]; export declare const NCAAB_MENS_GAME_OF_THE_DAY_CONTAINER_STYLE: React.CSSProperties; export declare const NCAAB_MENS_GAME_OF_THE_DAY_INNER_CLASSNAMES: string[]; export declare const NCAAB_MENS_GAME_OF_THE_DAY_INNER_STYLE: React.CSSProperties; export declare type MatchupHeadlineProps = { children?: React.ReactNode; style?: React.CSSProperties; overrideStyle?: boolean; classNames?: string[]; overrideClasses?: boolean; responsive?: boolean; viusage?: viusage.primary.Viusagelike; home?: ontology.Teamlike; away?: ontology.Teamlike; gameProjection?: ontology.ProjectionEntrylike; game?: ontology.GameByDatelike; onTeamClick?: (teamId: string) => Promise; onMatchupClick?: (gameId: string) => Promise; }; export declare const MatchupHeadline: FC;