import { ReactElement } from 'react'; import { PhysicalEvent } from '@fridaygame/client'; import { PhysicalEventThumbnailTheme } from './physicalEventThumbnail'; export interface PhysicalEventListProps { physicalEvents?: PhysicalEvent[]; theme?: PhysicalEventThumbnailTheme; } export declare function PhysicalEventList({ physicalEvents, theme, }: PhysicalEventListProps): ReactElement;