import { ReactElement } from 'react'; import { Composition, Match } from '@fridaygame/client'; export interface MatchSummaryProps { match: Match; podium?: Composition[]; self?: Composition; } export declare function MatchSummary({ match, podium, self }: MatchSummaryProps): ReactElement;