import { AfterViewInit, ElementRef, OnInit } from '@angular/core'; import { Observable } from 'rxjs'; import { FullscreenModalRef } from '../fullscreen-modal-ref'; export declare class FullScreenModalContentComponent implements OnInit, AfterViewInit { fullscreenModalRef: FullscreenModalRef; data: any; modalElRef: ElementRef; constructor(fullscreenModalRef: FullscreenModalRef, data: any); loading$: Observable; headerTilte: Observable; ngOnInit(): void; ngAfterViewInit(): void; private setFocusFirstFocusableElement; close(): void; }