import React from "react"; import "./timeline-item.scss"; export declare type TimelineItemProps = JSX.IntrinsicElements["li"] & { /** The header of the timeline item */ header: React.ReactNode; /** The time this item occured. Example (January 2019) */ time: string; }; export declare const TimelineItem: React.FC;