import { InjectionToken } from '@angular/core'; import { CompiledComponent, CompiledModule, ComponentRegistration, ComponentResolveStrategy, DynamicRegistrationArgs, NgxLazyLoaderConfig } from './types'; import * as i0 from "@angular/core"; export declare const NGX_LAZY_LOADER_CONFIG: InjectionToken; notFoundComponent: import("@angular/cdk/portal").ComponentType; errorTemplate: import("@angular/core").TemplateRef; errorComponent: import("@angular/cdk/portal").ComponentType; loaderDistractorTemplate: import("@angular/core").TemplateRef; loaderDistractorComponent: import("@angular/cdk/portal").ComponentType; logger: { log: (...args: any) => void; warn: (...args: any) => void; err: (...args: any) => void; }; componentResolveStrategy: ComponentResolveStrategy; customResolver: (registry: (CompiledComponent | CompiledModule)[]) => Object; }>>; export declare class LazyLoaderService { private get err(); private get log(); private get warn(); private static registry; static config: NgxLazyLoaderConfig; constructor(config?: NgxLazyLoaderConfig); private static configure; private static addComponentToRegistry; /** * Register an Angular component * @param id identifier that is used to resolve the component * @param group * @param component Angular Component Class constructor */ registerComponent; }>(args: DynamicRegistrationArgs): void; /** * * @param id * @param group */ unregisterComponent(id: string, group?: string): void; /** * Get the registration entry for a component. * Returns null if component is not in the registry. */ resolveRegistrationEntry(value: string, group?: string): { entry: ComponentRegistration; matchGroups: { [key: string]: string; }; } | { entry: ComponentRegistration; matchGroups?: undefined; }; /** * Check if a component is currently registered * Can be used to validate regex matchers and aliases. */ isComponentRegistered(value: string, group?: string): boolean; /** * * @param bundle * @returns The component `Object` if a component was resolved, `null` if no component was found * `false` if the specified strategy was an invalid selection */ resolveComponent(id: string, group: string, modules: (CompiledComponent | CompiledModule)[]): Object | null | false; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }