import { ComponentFactoryResolver, OnInit, DoCheck } from '@angular/core'; import { ContentService } from '../content.service'; import { ContentConfigOption } from '../content-config-option'; import { ContentContainer } from '../content-container'; import { ContentType } from '../content-type'; export declare class ContentHostComponent extends ContentContainer implements OnInit, DoCheck { private contentService; private componentFactoryResolver; private _contentHost; private _content; constructor(contentService: ContentService, componentFactoryResolver: ComponentFactoryResolver); private propogate(); private init(); ngOnInit(): void; ngDoCheck(): void; readonly type: ContentType; readonly configurationOptions: ContentConfigOption[]; reflow(): void; refresh(): void; }