import React, { FC } from 'react'; import { ontology } from '../../../../../util'; export declare const MATCHUP_CLASSNAMES: string[]; export declare const MATCHUP_STYLE: React.CSSProperties; export declare type MatchupProps = { children?: React.ReactNode; style?: React.CSSProperties; overrideStyle?: boolean; classNames?: string[]; overrideClasses?: boolean; responsive?: boolean; 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; }; export declare const Matchup: FC;