import { ReactElement } from 'react'; import { Match } from '@fridaygame/client'; export type MatchHeaderTheme = 'dark' | 'light'; export interface MatchHeaderProps { match: Match; theme?: MatchHeaderTheme; } export declare function MatchHeader({ match, theme }: MatchHeaderProps): ReactElement;