import { ElementRef, ViewContainerRef } from '@angular/core'; import { Subject, Observable } from 'rxjs'; import { DialogRef } from './dialog'; export interface Content { container: string; elementRef: ElementRef; } export declare class ContentService { contentRegistered$: Subject; afterContentRegistered(): Observable; registerContent(content: Content): void; } export declare class ContentComponent { private containerRef; private contentService; private dialogRef; container: string; constructor(containerRef: ViewContainerRef, contentService: ContentService, dialogRef: DialogRef); ngOnInit(): void; } export declare class ContentModule { }