declare class ScreenFull { get isFullscreen(): boolean; get element(): Element | null; get isEnabled(): boolean; private APINameMap; request(element?: HTMLElement, option?: FullscreenOptions): Promise; exit(): Promise; toggle(element?: HTMLElement, option?: FullscreenOptions): Promise; on(cb: () => void): void; off(cb: () => void): void; } export declare const screenfull: ScreenFull; export {};