import { ReactElement } from 'react'; import { TournamentParticipant } from '@fridaygame/client'; export interface TournamentParticipantThumbnailProps { tournamentParticipant?: TournamentParticipant; } export declare function TournamentParticipantThumbnail({ tournamentParticipant, }: TournamentParticipantThumbnailProps): ReactElement;