export interface BarChartPoint { label: string; value: number; color?: string; } interface BarChartProps { data?: BarChartPoint[]; height?: number; /** Soft floor so empty bars still show a stub */ emptyBaseline?: boolean; interactive?: boolean; showValues?: boolean; unit?: string; class?: string; } declare const BarChart: import("svelte").Component; type BarChart = ReturnType; export default BarChart;