export interface TimelineProps { } export interface TimelineSlots { default?(props: Record): any; } export interface TimelineItemProps { title?: string; time?: string; } export interface TimelineItemSlots { default?(props: Record): any; icon?(props: Record): any; title?(props: Record): any; time?(props: Record): any; }