/** Returns an array containing the ID of all processes listening to the specified port */ export declare const getPIDs: ((port: number | number[]) => Promise) & { /** Returns an array containing the ID of all processes listening to the specified port range */ range: (startsAt: number, endsAt: number) => Promise; };