Ambient external modules cannot be nested in other modules.
Using an import
or export
at the root of a file creates a file module. That explains the error nested module.
Fix: Import inside and not at the root of the file:
///
declare module 'morearty' {
import I = require('immutable');
}