import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { BulletInterfaceProps } from "../Bullet"; import { TitleSubtitleOInterface } from "../../interfaces/interfaces/TitleSubtitleInterface"; import { TimeInterfaceProps } from "../Time"; export interface TimelineItemInterfaceProps extends PropsInterface, TitleSubtitleOInterface, TimeInterfaceProps, BulletInterfaceProps { description?: string; component?: any; } export declare class TimelineItem extends PureComponent { static defaultProps: { format: string; }; constructor(props: any); render(): JSX.Element; }