import React from 'react'; import './styles/infocharts.scss'; type BenchmarkChartProps = { data: { label: string; actual: number; benchmark: number; }[]; title?: string; background?: string; foreground?: string; barColor?: string; targetColor?: string; }; declare const BenchmarkChart: React.FC; export default BenchmarkChart; //# sourceMappingURL=BenchmarkChart.d.ts.map