import * as React from "react"; export interface CircularChartProps { value: number; label: string; chartDiameter?: number; chartWidth?: number; bgColor?: string; primaryColor?: string; secondaryColor?: string; textColor?: string; glow?: boolean; } declare const CircularChart: ({ value, label, chartDiameter, chartWidth, primaryColor, secondaryColor, bgColor, textColor, glow, }: CircularChartProps) => React.ReactElement; export default CircularChart;