import { KeyValue } from "../../key-value/models/key-value.model"; export declare class LineChartData { measurementName?: string; data: number[]; tooltipDisplayValue: string[]; tooltipImpsOrGrpDisplay?: string[]; color: string; constructor(measurementName: string, value: number[], displayValue: string[], displayImpsOrGrp: string[], color: string); } export declare class LegendData { legendName: string; legendDotColor: string; legendMetaData: KeyValue[]; constructor(name: string, color: string, data: KeyValue[]); } export declare class Dataset { data: number[]; tooltipDisplayValue: string[]; borderWidth: any; borderColor: string; order: number; hoverBorderColor: string; backgroundColor?: string; hoverBackgroundColor?: string; label?: string; fill?: boolean; hoverBorderCapStyle?: string; pointHoverBackgroundColor?: string; pointHoverBorderColor?: string; borderRadius?: number; borderDash?: number[]; measurementName?: string; constructor(value: number[], displayValue: string[], borderColor: string, order: number, borderWidth?: number); }