/// import type { TimelineStep } from './types'; export interface TimelineProps { steps: TimelineStep[]; className?: string; } declare function Timeline({ steps, className }: TimelineProps): import("react").JSX.Element; export default Timeline;