/** * HorizontalBarChart, wrapper around the ChartJS Horizontal 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 HorizontalBarChart: React.FC; export default HorizontalBarChart;