/**
 * VerticalBarChart, wrapper around the ChartJS Vertical Bar chart for DCE
 * widgets
 * @author Jackson Parsells
 */
import React from 'react';
import Color from '../../shared/types/Color';
declare type Props = {
    title: string;
    showTitle?: boolean;
    bars: {
        value: number;
        label: string;
        color?: Color;
    }[];
};
declare const VerticalBarChart: React.FC<Props>;
export default VerticalBarChart;
