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'; import { ACDBService } from '../../../../services/ac-db.service'; export declare class ACIotParameterComponent implements OnInit, AfterViewInit, OnDestroy { private router; ACCom: ACCom; ACUtils: ACUtils; ACDBService: ACDBService; constructor(router: Router, ACCom: ACCom, ACUtils: ACUtils, ACDBService: ACDBService); _filter: string; set filter(val: string); get filter(): string; ngAfterViewInit(): void; loading: boolean; varlist: Array; varlistloaded: Array; load(): void; hasChanged: boolean; changed(item: VariableListItem): void; save(): void; match(value: string): boolean; createCode(): void; dofilter(): void; ngOnInit(): void; ngOnDestroy(): void; killed: boolean; timer(): void; setOn(item: any): void; setOff(item: any): void; } export declare class VariableListItem { Name: string; Remark: string; Class: string; ClassTag: string; Tag: string; Type: string; TypeNr: number; Parameter: boolean; Retentive: boolean; Value: object; _Count: number; _Changed: boolean; }