export interface Props { type: 'PieChart' | 'BarChart'; chartData: { datasets: { data: number[]; backgroundColor: string[]; toolTipMailArray: string[]; userLegendMailArray: string[]; count: number[]; }[]; labels: string[]; }; legendHeight: string; legendTitle: string; legendSubtitle: string; legendTitleColor: string; chartSize: string; legend: boolean; legendSubTitleValue: number; centerText: boolean; legeContainerWidth: string; chartHeight: string; chartWidth: string; toolTipText: string; isLegendUser: boolean; xAxisLabel: string; yAxisLabel: string; } declare const Chart: ({ type, chartData, legend, legendSubTitleValue, legendHeight, legendTitle, legendTitleColor, legendSubtitle, chartSize, centerText, legeContainerWidth, chartHeight, chartWidth, toolTipText, isLegendUser, xAxisLabel, yAxisLabel, }: Props) => import("react/jsx-runtime").JSX.Element; export default Chart;