import React from 'react'; import { ChartData, ChartOptions } from 'chart.js'; import { BaseChartProps } from './BaseChart'; export interface RadialChartProps extends Omit { data: ChartData<'doughnut'>; options?: ChartOptions<'doughnut'>; value?: number; maxValue?: number; showLabel?: boolean; labelFormatter?: (value: number, maxValue: number) => string; showGrid?: boolean; shape?: 'circle' | 'round'; stacked?: boolean; glow?: boolean; } export declare const RadialChart: React.FC; //# sourceMappingURL=RadialChart.d.ts.map