import { ChartDot } from '../model/ChartDot'; export declare class LineChartData { data: ChartDot[]; color: string; label: string; type: 'BAR' | 'LINE' | 'DASHED-LINE' | 'AREA'; constructor(data: ChartDot[], color: string, label: string, type?: 'BAR' | 'LINE' | 'DASHED-LINE' | 'AREA'); }