import { EventEmitter } from '@angular/core';
export declare class FullscreenService {
    statusChange: EventEmitter<any>;
    constructor();
    show(element: any): void;
    exit(): void;
    isActived(): boolean;
    private onChange;
}
