/// <reference types="react" />
import "../chart-line/index.scss";
export type CustomChartPieProps = {
    contentParams: Record<string, any>;
    getChatItemClickItems: (item: any) => void;
};
declare const ChartPie: (props: CustomChartPieProps) => JSX.Element;
export default ChartPie;
