export type TimelineState = 'planned' | 'inProgress' | 'done' export type TimelineCard = { icon: string title: string description: string state: { value: TimelineState message ?: string } }