import type { PieChartProp } from "../../props/components/charts.prop.js"; export type { PieChartProp, PieChartProp as PieChartProps, } from "../../props/components/charts.prop.js"; /** * Pie / donut chart — part-to-whole composition across a small set of slices. * Import from the tree-shaken `@godxjp/ui/charts` entry; requires the `recharts` * optional peer dependency. */ export declare function PieChart({ data, dataKey, nameKey, colors, label, showCaption, description, size, height, showLegend, numberFormat, donut, emptyMessage, className, id, }: PieChartProp): import("react").JSX.Element;