import { INodeInfo } from '../libs/system/INodeInfo'; export declare class SystemNodeInfo { /** * Combined key of hostname and nodeId */ key: string; machineId: string; hostname: string; nodeId: string; /** * Instance number for multiple instance of same nodeId */ instNr: number; isBackend: boolean; state: string; started: Date; finished: Date; contexts: INodeInfo[]; active: boolean; getRuntime(): number; restore(): void; eqNode(x: { nodeId: string; instNr: number; }): boolean; }