import React from 'react';
import { ISection } from '../Section/Section';
import { IPropsAny } from '../types';
export declare type ISectionTimelineItem = {
    title?: string;
    heading?: string;
    description?: string;
};
export declare type ISectionTimeline = 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;
