import { OnDestroy } from '@angular/core'; import { Observable } from 'rxjs'; import { DialogWrapperComponent } from "./dialog-wrapper.component"; import { DialogService } from "./dialog.service"; export declare class DialogComponent implements OnDestroy { protected dialogService: DialogService; private observer; protected result: T1; wrapper: DialogWrapperComponent; constructor(dialogService: DialogService); fillData(data: T): Observable; close(): void; ngOnDestroy(): void; }