///
import { TextProps } from "@chakra-ui/react";
import { PieSvgProps } from "@nivo/pie";
export declare type PieChartProps = Partial, "data">> & {
label: string;
data: T[];
textComponentProps?: TextProps;
indexBy: string;
};
export declare function PieChart({ label, data, height, textComponentProps, width, indexBy, ...restProps }: PieChartProps): JSX.Element;