import { OnInit, ElementRef, AfterViewInit, ChangeDetectorRef } from '@angular/core'; import { ModalInstanceService } from '../form-core/modal/modal-instance.service'; export declare class ModalServiceStatusComponent implements OnInit, AfterViewInit { private cd; private modalInstance; title: string; subTitle: string; content: any; modalEl: ElementRef; wrapperEl: ElementRef; iconInWrapper: boolean; constructor(cd: ChangeDetectorRef, modalInstance: ModalInstanceService); ngOnInit(): void; destroyInstance(): void; stopBehaviour(event: MouseEvent): void; ngAfterViewInit(): void; }