import 'typings-global'; /** * defines a LazyModule */ export declare type TLoader = 'npm' | 'systemjs'; export declare class LazyModule { name: string; cwd: string; whenLoaded: Promise; private nameIsPath; private whenLoadedDeferred; constructor(nameArg: string, cwdArg: string); /** * loads the module */ load(): Promise; }