interface DonutSegment { color: string; label?: string; labelValue?: React.ReactNode; value: number; } interface DonutChartV2Props { data: DonutSegment[]; centerLabel?: string; centerValue: string; } declare const DonutChartV2: ({ data, centerLabel, centerValue }: DonutChartV2Props) => import("react/jsx-runtime").JSX.Element; export default DonutChartV2;