import { SystemJsNgModuleLoader, NgModuleFactory, SystemJsNgModuleLoaderConfig, Compiler } from '@angular/core'; import { LocalizeParser } from './localize-router.parser'; /** * Extension of SystemJsNgModuleLoader to enable localization of route on lazy load */ export declare class LocalizeRouterConfigLoader extends SystemJsNgModuleLoader { private localize; constructor(localize: LocalizeParser, _compiler: Compiler, config?: SystemJsNgModuleLoaderConfig); /** * Extend load with custom functionality * @param {string} path * @returns {Promise>} */ load(path: string): Promise>; }