/** * Check whether a process with the given PID is currently alive. * Uses signal 0 which doesn't actually send a signal — it just checks existence. */ export declare function isProcessAlive(pid: number): boolean; //# sourceMappingURL=process-alive.d.ts.map