import { FunctionComponent } from 'react'; interface IBottomLineBarChart { chartWidth?: number; chartHeight?: number; chartMargin?: { top: number; right: number; bottom: number; left: number; }; numberOfBar?: number; bottomLineColor?: string; chartColor?: string; rangeType?: string; chartType?: string; numberOfBins?: number; binDataList?: Array<{ from: number; to: number; }>; visible?: boolean; histogramData?: Array<{ id: string; count: number; group: string; index: number; }>; range?: Array; defaultPoints?: Array<{ id: number; min: number; max: number; position: number; }>; equalWidthRange?: Array<{ min: number; max: number; }>; equalHeightLength?: number; onError?: (error: any, payload: Record) => void; onGetBinDataList?: (any: any) => void; callBackSetPoints?: (any: any, boolean: any) => void; } declare const BottomLineBarChart: FunctionComponent; export default BottomLineBarChart;