import { AfterViewInit, ChangeDetectorRef, ElementRef, OnDestroy, OnInit } from '@angular/core'; export declare class ACComponent implements OnDestroy, OnInit, AfterViewInit { elementRef: ElementRef; ref?: ChangeDetectorRef; _InstanceName: string; get InstanceName(): string; get ShowInstanceName(): boolean; set InstanceName(val: string); private _checkInstanceRoute; InstanceRemark: string; isHMI: boolean; static ActHMIParent: any; InstanceList: Array; constructor(elementRef: ElementRef, ref?: ChangeDetectorRef); private _serachtries; ShowInstance(InstanceName: string): void; private _showtryCnt; private _ShowInstance; _exec(): void; ngAfterViewInit(): void; ngOnInit(): void; destroyed: boolean; ngOnDestroy(): void; acAfterViewInit(): void; acOnInit(): void; acDestroy(): void; acExec(): void; popupdata: any; createPopup(name: string, width?: number | string, height?: number | string): void; closePopup(name: string): void; /** * Get the value from a plc-variable * @param Varname Name of the Variable or Whole Path if starts with # * @param Digits - convert .toFixed() if set and value is a number (Attention: Value will become a string!) */ Get(Varname: string, Digits?: any): any; /** * Set the value from a plc-variable * Start with # for global variables */ Set(Varname: string, val: any): any; _remark: any; get remark(): any; }