import { Injector, type Type } from '@angular/core'; /** * Wrapper class for a component that will be used as content for {@link PolymorpheusOutlet} * * @param component — an Angular component to be dynamically created * @param injector — optional {@link Injector} for lazy loaded module case */ export declare class PolymorpheusComponent { readonly component: Type; private readonly i?; constructor(component: Type, i?: Injector | undefined); createInjector(injector: Injector, useValue?: C): Injector; }