import { type AriaRole, type JSX, type ReactNode } from 'react'; import type { AriaLabel } from '../../core/types/aria-label.js'; import type { ChartVariant } from '../types/internal/pie-chart.js'; import { PieChartProps } from '../types/pie-chart.config.js'; export declare const PieChartInternal: (props: Omit & AriaLabel & { role?: AriaRole; variant: ChartVariant; height?: string | number; width?: string | number; isEmpty?: boolean; emptyState?: ReactNode; errorState?: ReactNode | ((message: string) => JSX.Element); 'data-dt-component': string; } & import("react").RefAttributes) => import("react").ReactElement | null;