import React from 'react';
import { ISection } from '../Section/Section';
import { IPropsAny } from '../types';
export interface ISectionTimelineItem {
    title?: string;
    heading?: string;
    description?: string;
}
export interface ISectionTimeline extends ISection {
    size?: 'small' | 'regular' | 'large';
    values?: ISectionTimelineItem[];
    TimelineProps?: IPropsAny;
    TimelineItemProps?: IPropsAny;
    TitleProps?: IPropsAny;
    HeadingProps?: IPropsAny;
    DescriptionProps?: IPropsAny;
    ItemStartProps?: IPropsAny;
    ItemEndProps?: IPropsAny;
}
declare const SectionTimeline: React.FC<ISectionTimeline>;
export default SectionTimeline;
