/** * BulletChart - Tableau bullet graph (mesure vs cible + bandes qualitatives). * API canonique (référence Svelte, React/Vue doivent s'aligner) * * Props obligatoires : * data BulletChartDatum[] - tableau {label, value, target, ranges?} * label string - aria-label du graphique * * Props optionnelles : * orientation "horizontal"|"vertical" (défaut "horizontal") * width number (défaut 480) * height number (défaut 240) * class string */ export type BulletChartDatum = { label: string; value: number; target: number; ranges?: number[]; }; type BulletChartProps = { data: BulletChartDatum[]; label: string; orientation?: "horizontal" | "vertical"; width?: number; height?: number; class?: string; }; declare const BulletChart: import("svelte").Component; type BulletChart = ReturnType; export default BulletChart; //# sourceMappingURL=BulletChart.svelte.d.ts.map