declare module 'find-port' {
  module findPort {}
  function findPort(lower: number, upper: number,
      callback: (ports: number[]) => void): void;
  export = findPort;
}
