import { FunctionComponent, ReactNode } from 'react'; import './TimelineError.scss'; interface ITimelineErrorProps { children?: ReactNode; title?: string; className?: string; } export declare const TimelineError: FunctionComponent; export {};