declare module 'word-count' {

  function wordCount (input: string): number;

  export = wordCount;

  namespace wordCount {
  }

}
