import { FC } from 'react'; export interface PieChartProps { entities?: DashboardConfigV2.Entity[]; data: any; type: DashboardConfigV2.BaseWidget['graphType']; count?: number | string; } declare const PieChart: FC; export default PieChart;