export interface IGroupChartProps { chartData: any[]; height?: number; margin?: any; barWidth?: number; line?: boolean; } declare const GroupedBarChart: ({ chartData, height, barWidth, margin, line }: IGroupChartProps) => import("react/jsx-runtime").JSX.Element; export { GroupedBarChart }; export default GroupedBarChart;