declare type CircleChartProps = { align?: "left" | "right" | "center"; aria: { [key: string]: string; }; chartData?: []; children?: Node; className?: string; colors?: string[]; dark?: Boolean; data?: Object; dataLabelHtml?: string; dataLabels?: boolean; height?: string; id?: string; innerSize?: "sm" | "md" | "lg" | "none"; legend?: boolean; maxPointSize?: number; minPointSize?: number; rounded?: boolean; startAngle?: number; style?: string; title?: string; tooltipHtml: string; useHtml?: boolean; zMin?: number; layout?: "horizontal" | "vertical" | "proximate"; verticalAlign?: "top" | "middle" | "bottom"; x?: number; y?: number; borderColor?: string; borderWidth?: number; }; declare const CircleChart: ({ align, aria, rounded, borderColor, borderWidth, chartData, children, className, colors, dark, data, dataLabelHtml, dataLabels, height, id, innerSize, legend, maxPointSize, minPointSize, startAngle, style, title, tooltipHtml, useHtml, zMin, layout, verticalAlign, x, y, ...props }: CircleChartProps) => JSX.Element; export default CircleChart;