import { ReactElement } from 'react'; import { TournamentParticipant } from '@fridaygame/client'; import { DateTime } from 'luxon'; export type TournamentBannerSize = 'small' | 'large'; export interface TournamentBannerProps { tournamentParticipants?: TournamentParticipant[]; onMatchesClick?: () => unknown; size?: TournamentBannerSize; end?: DateTime | string; } export declare function TournamentBanner({ tournamentParticipants, onMatchesClick, size, end, }: TournamentBannerProps): ReactElement;