/** * Official Type definitions for the LemonadeJS plugins * https://lemonadejs.net * Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped */ import { DefineComponent } from 'vue'; import Timeline from './index'; /** * Vue 3 wrapper. Use `` and access the * underlying instance via `timelineRef.value?.current` (e.g. `current.next()`). */ declare const TimelineVue: DefineComponent< Timeline.Options, {}, { el: HTMLElement | null; current: Timeline.Instance | null; } >; export default TimelineVue;