import { TimelineProps } from 'antd';
import { FC } from 'react';
import { TIMELINE } from '../../Types';
export interface ITimeline {
    ctype: typeof TIMELINE;
    props: TimelineProps;
}
declare const Timeline: FC<ITimeline>;
export default Timeline;
