import { ReactNode } from 'react'; import { TypographyProps } from '@mui/material'; type DoughnutChartContentProps = { isLoading: boolean; displayValue: ReactNode; displayTotalVariant: TypographyProps["variant"]; valuesUnit?: string; displayTotal: string | boolean | undefined; isEmpty: boolean; }; export declare const DoughnutChartContent: (props: DoughnutChartContentProps) => import("react/jsx-runtime").JSX.Element; export {};