import { OverlayRef } from '@angular/cdk/overlay'; import { Observable, Subject } from 'rxjs'; import { FullscreenContainerModalComponent } from './fullscreen-modal-container/fullscreen-container-modal.component'; export declare class FullscreenModalRef { private overlayRef; private _beforeClose; private _afterClosed; _afterOpened: Subject; componentInstance: FullscreenContainerModalComponent; constructor(overlayRef: OverlayRef); afterClosed(): Observable; afterOpened(): Observable; beforeClose(): Observable; close(data?: any): void; }