import { default as React } from 'react'; interface DataPoint { label: string; value: number; } interface BarChartProps { data: DataPoint[]; numOfLines?: number; initialWidth?: number; height?: any; line?: boolean; chartBarWidth?: number; yAxisLabelType?: 'inPercent' | 'inValue' | 'custom'; customLabelFormatter?: (value: number) => string; currency: string; } declare const BarChart: React.FC; export { BarChart }; export default BarChart;