import { ReactElement } from 'react'; import { Composition, Match } from '@fridaygame/client'; import { MatchActionProps } from './matchAction'; export interface MatchThumbnailProps extends Omit { match: Match; podium?: Composition[]; } export declare function MatchThumbnail({ match, podium, toComposition, onCompositionClick, compositionHref, compositionTarget, toFeed, onFeedClick, feedHref, feedTarget, }: MatchThumbnailProps): ReactElement;