import React from "react"; import './styles/infocharts.scss'; interface DataPoint { series1: number; series2: number; fruit: string; } interface DumbbellChartProps { data: DataPoint[]; colors?: string[]; height?: number; labelColor?: string; width: number; background?: string; foreground?: string; } declare const DumbbellChart: React.FC; export default DumbbellChart; //# sourceMappingURL=DumbellChart.d.ts.map