import { default as React } from 'react'; interface DataPoint { label: string; value: number; } interface DonutChartProps { data: DataPoint[]; width?: number; height?: number; legend?: boolean; direction?: "vertical" | "horizontal"; total?: string; donutThickerValue?: number; CustomLegends?: React.FC<{ data: DataPoint[]; }>; title: string; } declare const DonutChart: React.FC; export { DonutChart }; export default DonutChart;