import { OnInit, AfterViewInit } from '@angular/core'; import { ACCom } from '../../../services/ac-com.service'; import { ACTrendService } from '../../../services/ac-trend.service'; import { Chart } from '../../draw-primitives/consumption/Consumption.component'; import { ChartItem } from '../../draw-primitives/consumption/Helper'; export declare class ACConsumptionMainComponent implements AfterViewInit, OnInit { ACCom: ACCom; ACTrendService: ACTrendService; ChartList: Array; AddExisting(ChartItemCfg: ChartItemCfg): void; AddNew(ChartItemCfg: ChartItemCfg): void; _GetCharItem(ChartItemCfg: ChartItemCfg): ChartItem; Close(Chart: Chart): void; SelectChart(Chart: Chart): void; constructor(ACCom: ACCom, ACTrendService: ACTrendService); ngAfterViewInit(): void; ngOnInit(): void; } export declare class ChartItemCfg { Name: string; Remark: any; Varname: string; IsConsumption: boolean; }