import React, { FC } from 'react'; import { viusage } from '../../../../util'; import { ontology } from '../../../../util'; export declare const MATCHUPS_CONTENT_CONTAINER_CLASSNAMES: string[]; export declare const MATCHUPS_CONTENT_CONTAINER_STYLE: React.CSSProperties; export declare const MATCHUPS_CONTENT_INNER_CLASSNAMES: string[]; export declare const MATCHUPS_CONTENT_INNER_STYLE: React.CSSProperties; export declare type MatchupContentProps = { children?: React.ReactNode; style?: React.CSSProperties; overrideStyle?: boolean; classNames?: string[]; overrideClasses?: boolean; responsive?: boolean; viusage?: viusage.primary.Viusagelike; homeDistro?: ontology.PointDistributionlike; home?: ontology.Teamlike; homeEfficiency?: ontology.EfficiencyEntrylike; awayDistro?: ontology.PointDistributionlike; away?: ontology.Teamlike; awayEfficiency?: ontology.EfficiencyEntrylike; gameProjection?: ontology.ProjectionEntrylike; gameProjections?: ontology.ProjectionEntrylike[]; leagueAverages?: ontology.LeagueAverageslike; homeGameProjections?: ontology.ProjectedGamelike[]; awayGameProjections?: ontology.ProjectedGamelike[]; game?: ontology.GameByDatelike; onTeamClick?: (teamId: string) => Promise; onMatchupClick?: (gameId: string) => Promise; headerProjectedGames?: ontology.ProjectedGamelike[]; headerTeams?: ontology.Teamlike[]; onAccountClick?: () => Promise; }; export declare const MatchupContent: FC;