export interface StackedSeries { id: string; label: string; color?: string; values: number[]; } interface StackedBarChartProps { series?: StackedSeries[]; labels?: string[]; height?: number; interactive?: boolean; showLegend?: boolean; unit?: string; class?: string; } declare const StackedBarChart: import("svelte").Component; type StackedBarChart = ReturnType; export default StackedBarChart;