import { IModuleLoader } from '../IModuleLoader'; import { Type } from '../types'; import { AsyncLoadOptions } from '../LoadOptions'; export declare class BrowserModuleLoader implements IModuleLoader { constructor(); private _loader; getLoader(): (modulepath: string) => Promise; load(options: AsyncLoadOptions): Promise<(Type | object)[]>; loadModule(file: string): Type | object | Promise | object>; }