export interface HBarPoint { label: string; value: number; color?: string; } interface HorizontalBarChartProps { data?: HBarPoint[]; /** Kept for API compat — layout is CSS, not SVG viewBox */ barWidth?: number; /** Kept for API compat — label column uses CSS */ labelWidth?: number; rowHeight?: number; interactive?: boolean; showValues?: boolean; unit?: string; class?: string; } declare const HorizontalBarChart: import("svelte").Component; type HorizontalBarChart = ReturnType; export default HorizontalBarChart;