import { TimelineEntry } from './Timeline.types'; /** * Vertical activity / history feed. Two ways to use it: * * 1. Data-driven — pass `items`; each maps to a . Use the default * scoped slot to render custom body content per entry: * * * * * 2. Composition — drop children directly (omit `items`). Mark the * last one with `last` to drop its connector, or let data-driven mode do it. */ type __VLS_Props = { items?: TimelineEntry[]; }; declare function __VLS_template(): { attrs: Partial<{}>; slots: { default?(_: { item: TimelineEntry; index: number; }): any; meta?(_: { item: TimelineEntry; index: number; }): any; items?(_: {}): any; }; refs: {}; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; }; //# sourceMappingURL=Timeline.vue.d.ts.map