1declare module 'freeport-async' {
2  interface FreePortOptions {
3    hostnames?: Array<string | null>;
4  }
5
6  function freePortAsync(rangeStart: number, options?: FreePortOptions): Promise<number>;
7  export = freePortAsync;
8}
9