/** * Get all PIDs in a process tree, including the root PID and all descendants. * Uses platform-specific commands: * - macOS: pgrep -P * - Linux: ps -o pid --no-headers --ppid */ export declare function getProcessTree(rootPid: number): Promise; //# sourceMappingURL=process-tree.d.ts.map