import { OnInit, OnChanges, SimpleChanges } from '@angular/core'; import { ColorFactory } from "../../shared/factory/color-factory"; import { TimeData } from "../../shared/model/time-data"; import * as i0 from "@angular/core"; export declare class MultilineChartComponent implements OnInit, OnChanges { /** * Render as IAQ vs Smart Routing */ style: string; /** * Label to display to the left of the chart */ label: string; /** * Time Data used to render chart */ data?: TimeData[][]; /** * Apex charts configuration */ chartConfig: any; /** * Factory used to determine color based on bar value * @type {ColorFactory} */ colorFactory: typeof ColorFactory; constructor(); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }