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; colors?: Array; titleProps?: any; valueProps?: any; isUserDashbord?: boolean; totalUsers?: any; } export declare const DonutChart: React.FC; export default DonutChart;