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) => import("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; }; Tooltip: { (props: import("./types/pie-chart.config.js").PieChartCustomTooltipProps): null; displayName: string; }; Intent: { (props: import("../../index.js").IntentProps): null; displayName: string; }; EmptyState: ({ children }: import("../index.js").EmptyStateProp) => import("react/jsx-runtime").JSX.Element; ErrorState: ({ children }: import("../index.js").ErrorStateProps) => import("react/jsx-runtime").JSX.Element; ColorRule: { (_props: import("../index.js").ColorRuleProps): null; displayName: string; }; Toolbar: { (props: import("./types/toolbar.js").PieChartToolbarSlotProps): null; displayName: string; }; DownloadCSV: { (): null; displayName: string; }; };