import { ChildProcess } from "child_process"; /** * ## Kill Child Process Function * @param {string | number | (string | number)[]} [port] * @returns {Promise} */ export default function killChild(childProcess?: ChildProcess, port?: string | number | (string | number)[]): Promise;