export interface DonutSlice { label: string; value: number; color?: string; } interface DonutChartProps { data?: DonutSlice[]; size?: number; thickness?: number; interactive?: boolean; showLegend?: boolean; showCenter?: boolean; unit?: string; centerLabel?: string; class?: string; } declare const DonutChart: import("svelte").Component; type DonutChart = ReturnType; export default DonutChart;