import { default as React } from 'react'; export interface DonutChartDataPoint { name: string; value: number; color?: string; [key: string]: string | number | undefined; } export interface DonutChartProps { data: DonutChartDataPoint[]; height?: number; width?: number; innerRadius?: number; outerRadius?: number; showTooltip?: boolean; showLegend?: boolean; className?: string; } declare const DonutChart: React.FC; export default DonutChart;