export default BarChart;
declare class BarChart extends React.PureComponent<any, any, any> {
    static displayName: string;
    static defaultProps: {
        items: never[];
    };
    constructor(props: any);
    constructor(props: any, context: any);
    MIN_BAR_WIDTH: number;
    state: {
        width: number;
    };
    componentDidMount(): void;
    _getCalculatedTotal(): any;
    _renderValue: ({ descriptionInfo, value, label, labelShort, showText }: {
        descriptionInfo: any;
        value: any;
        label: any;
        labelShort: any;
        showText: any;
    }) => React.JSX.Element;
    _renderItem: ({ value, label, labelShort, description, descriptionInfo }: {
        value: any;
        label: any;
        labelShort: any;
        description: any;
        descriptionInfo: any;
    }, key: any) => React.JSX.Element;
    render(): React.JSX.Element;
    node: HTMLDivElement | null | undefined;
}
import React from 'react';
//# sourceMappingURL=BarChart.d.ts.map