import type { TimelineCssVariables, TimelineFactory, TimelineProps, TimelineStylesNames } from './Timeline';
import type { TimelineItemFactory, TimelineItemProps, TimelineItemStylesNames } from './TimelineItem/TimelineItem';
export { Timeline } from './Timeline';
export { TimelineItem } from './TimelineItem/TimelineItem';
export type { TimelineProps, TimelineStylesNames, TimelineCssVariables, TimelineFactory, TimelineItemProps, TimelineItemStylesNames, TimelineItemFactory, };
export declare namespace Timeline {
    type Props = TimelineProps;
    type StylesNames = TimelineStylesNames;
    type CssVariables = TimelineCssVariables;
    type Factory = TimelineFactory;
    namespace Item {
        type Props = TimelineItemProps;
        type StylesNames = TimelineItemStylesNames;
        type Factory = TimelineItemFactory;
    }
}
