Ambient declaration with an imported type in TypeScript

I have a declaration file in my TypeScript project like so: // myapp.d.ts declare namespace MyApp { interface MyThing { prop1: string prop2: number } } This works great and I can use ...