import { ChangeDetectorRef, ComponentFactoryResolver, EventEmitter, Injector, OnChanges, OnDestroy, OnInit, SimpleChanges, ViewContainerRef } from '@angular/core'; import { InputMap, OutputMap } from '@gewd/lazy/contracts'; import * as i0 from "@angular/core"; export declare class LazyComponent implements OnInit, OnChanges, OnDestroy { private resolver; private injector; private cd; component: string; componentInputs: InputMap; componentOutputs: OutputMap; targetContainer: ViewContainerRef; componentCreated: EventEmitter; componentLoading: EventEmitter; private componentInstance; private unsubForOutputs$; constructor(resolver: ComponentFactoryResolver, injector: Injector, cd: ChangeDetectorRef); setComponent(): Promise; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; private setInputs; private unsubOutputs; private setOutputs; ngOnInit(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }