import { IconType, ThemeType } from '../..'; /** * One node in a : a marker (icon dot or plain dot) with a connecting * line, a title, optional meta line, and free content via the default slot. * - `icon` renders inside the dot; otherwise a small solid dot is shown. * - `color` themes the dot (and icon). * - `last` removes the connector line (auto-handled by ). * - Slots: `#marker` (replace the dot), `#meta`, default (body). */ type __VLS_Props = { title?: string; meta?: string; icon?: IconType; color?: ThemeType; last?: boolean; }; declare function __VLS_template(): { attrs: Partial<{}>; slots: { marker?(_: {}): any; title?(_: {}): any; default?(_: {}): any; meta?(_: {}): 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=TimelineItem.vue.d.ts.map