/** * POSIX trick: kill(pid, 0) sends no signal but throws ESRCH if no such PID, * EPERM if the PID exists but is owned by another user. Either way the * process exists; ESRCH alone means dead. */ export declare function isPidAlive(pid: number): boolean; //# sourceMappingURL=process-liveness.d.ts.map