/** * HLCChart - barres high/low/close (bâtons financiers, variante d'OHLC sans open). * Barre verticale du low au high, tick droite au niveau de la clôture. * La couleur hausse/baisse compare close à la clôture précédente. * API canonique (référence Svelte, React/Vue doivent s'aligner) * * Props obligatoires : * data HLCChartDatum[] - tableau {label, high, low, close} * label string * * Props optionnelles : * width number (défaut 480) * height number (défaut 240) * class string */ export type HLCChartDatum = { label: string; high: number; low: number; close: number; }; type HLCChartProps = { data: HLCChartDatum[]; label: string; width?: number; height?: number; class?: string; }; declare const HLCChart: import("svelte").Component; type HLCChart = ReturnType; export default HLCChart; //# sourceMappingURL=HLCChart.svelte.d.ts.map