import { ReactNode } from 'react'; import { TypographyProps } from '@mui/material'; import { Property } from 'csstype'; import { ChartLegend } from '../Legend'; export type DoughnutChartProps = { values?: number[]; valuesUnit?: string; labels?: string[]; colors?: Property.Color[]; legend?: ChartLegend; icons?: ReactNode[]; children?: ReactNode; className?: string; valuesFormatterFn?: (value: number) => string; createPalette?: boolean; isLoading?: boolean; displayTotal?: string | boolean; displayTotalVariant?: TypographyProps["variant"]; spacing?: number; borderWidth?: number; borderColor?: Property.Color; fullWidthLegend?: boolean; hoverOffset?: number; showTooltip?: boolean; width?: string; }; export declare const DoughnutChart: (props: DoughnutChartProps) => import("react/jsx-runtime").JSX.Element;