import { Icon } from '../types/icon';
export type TimelineItem = {
    icon?: Icon;
};
export declare const timelineLayouts: readonly ["date-left", "date-right", "stacked-left", "stacked-right", "stacked-center"];
export type TimelineLayout = typeof timelineLayouts[number];
export type TimelineLayoutFunction = (item: TimelineItem, index: number) => TimelineLayout;
