import { default as React } from 'react'; export interface BarChartIcon { symbol: string; color?: string; size?: number; } export interface BarChartDataPoint { name: string; value: number; icon?: BarChartIcon; [key: string]: string | number | BarChartIcon | undefined; } export interface BarChartProps { data: BarChartDataPoint[]; height?: number; width?: number; showGrid?: boolean; showTooltip?: boolean; barColor?: string; barColors?: string[]; barWidth?: number; className?: string; permanentTooltipIndex?: number; isAnimated?: boolean; showIcons?: boolean; iconSize?: number; iconSpacing?: number; showAdditionalGridLines?: boolean; } declare const BarChart: React.FC; export default BarChart;