/** Kill processes by PIDs, ports and port ranges. */ export declare const kill: { /** Kill the specified process ID */ pid: (PID: number | number[]) => Promise; /** Kill all processes listening on the specified port */ port: (port: number | number[]) => Promise; /** Kill all processes listening on the specified range ports */ range: (startsAt: number, endsAt: number) => Promise; };