export declare type NodeProcess = { type: 'node' | 'flow'; identifier: string; ns: string; name: string; status: string; filled: boolean; runCount: number; outputCount: number; ports: any; ok: boolean; }; export declare function onExit(processes: NodeProcess[]): void;