export default class PortChecker { static isPortAvailable(port: number, host?: string): Promise; static findAPortNotInUse: (ports: number[], host: string) => Promise; static findAPortInUse: (ports: number[], host: string) => Promise; }