import React from 'react'; declare type TimelineProps = { aria?: { [key: string]: string; }; children?: React.ReactChild[] | React.ReactChild; className?: string; data?: { [key: string]: string; }; id?: string; orientation?: string; showDate?: boolean; }; declare const Timeline: { ({ aria, className, children, data, id, orientation, showDate, }: TimelineProps): JSX.Element; Item: ({ className, children, date, icon, iconColor, lineStyle, }: { className?: string; children?: React.ReactNode | React.ReactNode[]; date?: Date; icon?: string; iconColor?: "default" | "yellow" | "red" | "green" | "royal" | "blue" | "purple" | "teal"; lineStyle?: "dotted" | "solid"; }) => JSX.Element; }; export default Timeline;