import { ElementRef, OnChanges, OnInit, SimpleChanges } from '@angular/core'; export declare class FullScreenDirective implements OnChanges, OnInit { private el; fullscreenState: boolean; constructor(el: ElementRef); ngOnChanges(changes: SimpleChanges): void; ngOnInit(): void; }