import { default as React } from 'react'; import { SideProp, VariantProp } from './bullet'; export interface TimelineItem extends SideProp, VariantProp { title: string; party: string; subtitle: string; } export interface TimelineProps { items: [TimelineItem, ...TimelineItem[]]; className?: string; } declare function Timeline({ items, className, ...props }: Readonly): React.JSX.Element; export default Timeline;