import type { PieChartRef } from './types/pie-chart-ref.js'; import type { PieChartProps } from './types/pie-chart.config.js'; /** * The `PieChart` visualizes data proportions in a circular chart. * It divides a circle into slices, with each slice representing a specific * category or value. * @public */ export declare const PieChart: ((props: PieChartProps & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes) => React.ReactElement | null) & { Legend: { (props: import("./types/pie-chart.config.js").PieChartLegendConfig): null; displayName: string; }; Grouping: { (props: import("./types/pie-chart.config.js").GroupConfig): null; displayName: string; }; Labels: { (props: import("./types/pie-chart.config.js").LabelsConfig): null; displayName: string; }; Intent: { (props: import("../../core/slots/Intent/Intent.js").IntentProps): null; displayName: string; }; EmptyState: ({ children }: import("../core/slots/chart-states/EmptyStateSlot.js").EmptyStateSlotProps) => import("react/jsx-runtime.js").JSX.Element; ErrorState: ({ children }: import("../core/slots/chart-states/ErrorStateSlot.js").ErrorStateSlotProps) => import("react/jsx-runtime.js").JSX.Element; };