import { ReactElement } from 'react'; import { Match, PhysicalEvent } from '@fridaygame/client'; export type MatchFeedTheme = 'dark' | 'light'; export interface MatchFeedProps { match: Match; physicalEvents?: PhysicalEvent[]; theme?: MatchFeedTheme; } export declare function MatchFeed({ match, physicalEvents, theme }: MatchFeedProps): ReactElement;