export type TimelineTone = "neutral" | "info" | "success" | "warning" | "danger"; export type TimelineItem = { /** Titre de l'événement. */ title: string; /** Métadonnée optionnelle (date, heure, libellé court). */ meta?: string; /** Description optionnelle de l'événement. */ description?: string; /** Ton de la pastille (mappé sur les tokens de statut DS, défaut "neutral"). */ tone?: TimelineTone; }; export type TimelineOrientation = "vertical" | "horizontal"; import type { HTMLAttributes } from "svelte/elements"; type TimelineProps = Omit, "class"> & { items: TimelineItem[]; orientation?: TimelineOrientation; class?: string; }; declare const Timeline: import("svelte").Component; type Timeline = ReturnType; export default Timeline; //# sourceMappingURL=Timeline.svelte.d.ts.map