import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { TimelineItemInterfaceProps } from "./TimelineItem"; export interface TimelineInterfaceProps extends PropsInterface { timeline: TimelineItemInterfaceProps[]; card?: boolean; fluid?: boolean; } export declare class Timeline extends PureComponent { static defaultProps: { timeline: never[]; }; constructor(props: any); render(): JSX.Element; }