///
import { EventEmitter } from "events";
export declare class ProjectStatusServer extends EventEmitter {
private readonly dbg;
private running;
private readonly testing;
private readonly project_info;
private info?;
private status?;
private last?;
private elevated;
private elevated_cpu_procs;
constructor(L: Function, testing?: boolean);
private init;
private update_alerts;
private alert_cpu_processes;
private alerts;
private update;
private get_status;
stop(): void;
start(): Promise;
private _start;
}
export declare function get_ProjectStatusServer(L: Function): ProjectStatusServer;