export type TimelineChartTone = "category1" | "category2" | "category3" | "category4" | "category5" | "category6" | "category7" | "category8"; export type TimelineChartEvent = { /** Point on the axis (year, day index, ordinal step…). */ position: number; /** Required short label, shown above/below the marker (alternated). */ label: string; /** Optional longer description, surfaced in the accessible list + tooltip. */ description?: string; /** Optional explicit categorical tone; otherwise cycles category1..8. */ tone?: TimelineChartTone; }; type TimelineChartProps = { data: TimelineChartEvent[]; label: string; width?: number; height?: number; class?: string; }; declare const TimelineChart: import("svelte").Component; type TimelineChart = ReturnType; export default TimelineChart; //# sourceMappingURL=TimelineChart.svelte.d.ts.map