=== tests/cases/compiler/internalAliasInterfaceInsideLocalModuleWithExport.ts === export module a { >a : any export interface I { >I : I } } export module c { >c : typeof c export import b = a.I; >b : any >a : any >I : b export var x: b; >x : b >b : b }