import React from 'react'; export interface DataSet { label: string; data: any[]; fill?: string; fillColor?: string; backgroundColor: string; borderColor?: string; borderWidth?: number; pointColor?: string; pointStrokeColor?: string; pointHighlightFill?: string; pointHighlightStroke?: string; } declare const LineChart: React.FC; export default LineChart;