import type { ReactNode } from 'react'; export type TimelineItemVariant = 'default' | 'error' | 'pending'; export interface TimelineStep { title: string; subtitle?: string; variant?: TimelineItemVariant; endAdornment?: ReactNode; id?: string; }