import { ReactElement } from 'react'; import { PhysicalEvent } from '@fridaygame/client'; export type PhysicalEventTimelineTheme = 'dark' | 'light'; export interface PhysicalEventTimelineProps { physicalEvent: PhysicalEvent; theme?: PhysicalEventTimelineTheme; } export declare function PhysicalEventTimeline({ physicalEvent, theme, }: PhysicalEventTimelineProps): ReactElement;