/** * Timeline Panel - Visual timeline of all events */ import type { EventStore } from "../store/event-store"; interface TimelinePanelProps { eventStore: EventStore; } export declare function TimelinePanel({ eventStore }: TimelinePanelProps): import("react/jsx-runtime").JSX.Element; export {};