import { ReactNode } from 'react'; import { DoughnutChartData } from '../../DoughnutChart/utils'; export type PolymorphicRawChartProps = { data: DoughnutChartData[]; valuesFormatterFn?: (value: number, precision?: number) => string; icons?: ReactNode[]; isLoading?: boolean; onLegendAction?: (index: number) => void; maxScore?: number | number[]; separator?: string; }; export declare const PolymorphicRawChart: (props: PolymorphicRawChartProps) => import("react/jsx-runtime").JSX.Element;