import { ChildProcess } from 'child_process'; /** * Kills child process. * * @param child The child process to kill. * @param verbose Whether to explain each action. * @returns true if the process was successfully killed. */ declare function killProcess(child: ChildProcess, verbose?: boolean): boolean; export { killProcess };