interface DataPoint { label: string; value: number; color?: string; } interface Props { data: DataPoint[]; height?: number; /** Show value labels on top of bars */ showValues?: boolean; class?: string; } declare const BarChart: import("svelte").Component; type BarChart = ReturnType; export default BarChart;