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