import { OnInit, OnDestroy, AfterViewInit } from '@angular/core'; import { ACCom } from "../../../../services/ac-com.service"; import { Router } from "@angular/router"; import { ACUtils } from '../../../../services/ac-utils.service'; export declare class ACIotConfigComponent implements OnInit, AfterViewInit, OnDestroy { private router; ACCom: ACCom; ACUtils: ACUtils; _configData: string; get configData(): string; set configData(val: string); _guid: any; set GUID(val: string); canSave: boolean; _newCode: string; set newVal(val: string); editorOptions: { theme: string; language: string; }; loading: boolean; constructor(router: Router, ACCom: ACCom, ACUtils: ACUtils); ngAfterViewInit(): void; save(): void; reload(): void; plcGuid: string; load(): void; ngOnInit(): void; ngOnDestroy(): void; killed: boolean; timer(): void; }