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 ACIotProcessListComponent implements OnInit, AfterViewInit, OnDestroy { private router; ACCom: ACCom; ACUtils: ACUtils; ACDBService: ACDBService; set GUID(val: string); _guid: string; loading: boolean; constructor(router: Router, ACCom: ACCom, ACUtils: ACUtils, ACDBService: ACDBService); _filter: string; set filter(val: string); get filter(): string; ngAfterViewInit(): void; realInst: { proc: string; realInstance: string; }[]; openInstance(proc: acProcess): void; processList: Array; processListLoaded: Array; showFilter: boolean; load(): void; dofilter(): void; setHold(proc: acProcess): void; kill(proc: acProcess): void; ngOnInit(): void; ngOnDestroy(): void; killed: boolean; timer(): void; } declare class acProcess { Name: string; DisplayName: string; _StartTime: number; _StartupMemory: number; _ActualMemory: number; _CPUUsage: number; CPUUsage: string; StartTime: string; StartupMemory: string; ActualMemory: string; Pid: any; number: any; MemoryAlarm: boolean; MemoryLimit: number; Running: boolean; Lifetick: number; HoldRestart: boolean; KillProcess: boolean; RestartCount: number; hasInstance: boolean; RealInstanceName: string; } export {};