export interface TimelineItem {
    date: string;
    time: string;
    data: any;
    type?: string;
    highlight?: boolean;
}
