/**
 * Kills a process with the given PID.
 *
 * @param {number} pid - The process ID to kill.
 * @param {string | number} [signal='SIGTERM'] - signal to send to the process
 * @param {boolean} [recursive=false] - pass true for tree kill
 *
 * @returns {void}
 */
declare const killSync: (pid: number, signal?: string | number, recursive?: boolean) => void;
export default killSync;
