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