import { ReactElement } from 'react'; import { TournamentParticipant } from '@fridaygame/client'; export interface TournamentParticipantPodiumProps { tournamentParticipants?: TournamentParticipant[]; } export declare function TournamentParticipantPodium({ tournamentParticipants, }: TournamentParticipantPodiumProps): ReactElement;