import { 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 & { variant: ChartVariant; height?: string | number; width?: number; isEmpty?: boolean; emptyState?: ReactNode; errorState?: ReactNode | ((message: string) => JSX.Element); } & import("react").RefAttributes) => React.ReactElement | null;