/**
 * Official Type definitions for the LemonadeJS plugins
 * https://lemonadejs.net
 * Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
 */
import Component from './index';

interface Timeline {
    (): any
    [key: string]: any
}

declare function Timeline<Timeline>(props: Component.Options): any;

export default Timeline;
