import type { ChildProcess } from 'node:child_process';
/**
 * Kill `cp` (and its descendants) when this process exits, unless it has
 * already exited on its own.
 */
export declare function killChildOnHostExit(cp: ChildProcess): void;
export declare function killTrackedChildren(): void;
