import React from 'react'; export interface BarChartProps { data: BarChartDatum[]; barType?: 'round' | 'square'; barPadding?: number; barColour?: string; className?: string; showBackgroundColumns?: boolean; } interface BarChartDatum { bin: any; value: number; } export declare class BarChart extends React.Component { chartGen: any; chartGenRef: any; containerRef: any; constructor(props: BarChartProps); componentDidMount(): void; componentDidUpdate(): void; render(): JSX.Element; } export {};