¿Cómo usar (mqtt) js library en la aplicación angular 2 typecript?

Estuve muy cerca del enfoque adoptado enHow-to-use-moment-js-library-in-angular-2-typescript-app pero aun asíerror TS2307: Cannot find module 'mqtt'.

npm install --save mqtt
<s>typings install --save mqtt</s

que no encontró los tipings pero esto sí ...

typings install mqtt --save --ambient 

mi tsconfig.conf se ve así

{
    "compilerOptions": {
        "noImplicitAny": true,
        "module": "commonjs",
        "target": "ES5",
        "emitDecoratorMetadata": true,
        "experimentalDecorators": true,
        "sourceMap": true,
        "declaration": true
    },
    "files": [
        "ng2-mqtt.ts"
    ],
    "exclude": [
        "node_modules"
    ]
}

yng2-mqtt.ts solo tiene esto ...

export * from './src/mqtt.service'

y./src/mqtt.service.ts tiene..

import {Injectable} from 'angular2/core';
import * as mqtt from 'mqtt';
@Injectable() 
export class MqttService {
  constructor() {
     //mqtt.connect('ws://10.0.1.100:3333')
     // ...
  }
}

tsc -version 1.8.10, [email protected], tipings 0.8.1, npm 2.14.20, nodo v4.4.1, Windows 7

¿Será demasiado difícil usar Angular 2 con elementos fuera de su mundo mecanografiado?

Respuestas a la pregunta(1)

Su respuesta a la pregunta