import { ReactNode } from 'react'; declare type TimelineItemProps = { name: string; children: ReactNode; withLine?: boolean; }; export declare function TimelineItem({ name, children, withLine, }: TimelineItemProps): JSX.Element; export {};