export type { TimelineItem } from './ui-app.types'; /** * SvTimeline - a vertical activity / history feed: a connecting line with a * marker (colour + optional glyph) per entry, and a title / time / description. * Data-driven via `items`, with an optional `item` snippet for custom content. * Theme-driven. Parity: Smart timeline. * * ```svelte * * ``` */ import type { Snippet } from 'svelte'; import type { TimelineItem } from './ui-app.types'; type Props = { items: ReadonlyArray; /** Render custom content per entry (receives the item). */ item?: Snippet<[TimelineItem]>; }; declare const SvTimeline: import("svelte").Component; type SvTimeline = ReturnType; export default SvTimeline;