import React, { FC } from 'react'; import { ontology } from '../../../../../util'; export declare const MATHCUP_COMPISON_DESKTOP_CLASSNAMES: string[]; export declare const MATHCUP_COMPISON_DESKTOP_STYLE: React.CSSProperties; export declare type MatchupComparisonDesktopProps = { 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; game?: ontology.GameByDatelike; onTeamClick?: (teamId: string) => Promise; onMatchupClick?: (gameId: string) => Promise; }; export declare const MatchupComparisonDesktop: FC;