import './DonutChart.css'; import React from 'react'; import { HandlerClickArc, HandlerClickPie } from "../CoreDonutChart/CoreDonutChartPie/CoreDonutChartPie"; import { ArcDataItem, DonutDataItem, SortValue } from "../CoreDonutChart/helpers"; import { FormatValue } from "../../types"; export declare const DonutChart: React.ForwardRefExoticComponent & { data: readonly DonutDataItem[]; value?: string | undefined; label?: string | undefined; halfDonut?: "left" | "right" | "bottom" | "top" | undefined; valueSize?: number | undefined; sums?: readonly number[] | undefined; legendPosition?: "left" | "right" | "bottom" | "top" | undefined; showArcLabels?: boolean | undefined; arcLabelSize?: "s" | "xs" | undefined; formatValue?: ((value: string) => string) | undefined; formatLabel?: ((label: string) => string) | undefined; formatValueForTooltip?: FormatValue | undefined; formatArcLabel?: ((item: ArcDataItem) => string) | undefined; sortValue?: SortValue | null | undefined; onClick?: React.MouseEventHandler | undefined; onClickPie?: HandlerClickPie | undefined; onClickArc?: HandlerClickArc | undefined; } & React.RefAttributes>;