import { TTimeline, SIZES } from '../types';
interface ITimelineInput {
    position?: number;
    items: Array<{
        title: string;
        subtitle: string;
    }>;
    width?: SIZES;
    title?: string;
}
export declare const createTimeline: ({ items, width, title, position, }: ITimelineInput) => TTimeline;
export {};
