import { ElementRef, ChangeDetectorRef, EventEmitter, OnChanges, SimpleChanges, SimpleChange, OnInit, OnDestroy, AfterViewInit } from '@angular/core'; import { FullContentService } from './full-content.service'; import { Router } from '@angular/router'; export declare class FullContentComponent implements AfterViewInit, OnInit, OnChanges, OnDestroy { private el; private router; private cd; private srv; private doc; private bodyEl; private inited; private srv$; private route$; private scroll$; private id; _height: number; fullscreen: any; private _fullscreen; hideTitle: any; private _hideTitle; padding: any; private _padding; fullscreenChange: EventEmitter; constructor(el: ElementRef, router: Router, cd: ChangeDetectorRef, srv: FullContentService, doc: any); ngOnInit(): void; ngAfterViewInit(): void; private updateFsCls; private update; private updateHeight; toggle(): void; ngOnChanges(changes: { [P in keyof this]?: SimpleChange; } & SimpleChanges): void; ngOnDestroy(): void; private installResizeEvent; private uninstallResizeEvent; }