import type { transport } from '../../client/type'; import { BridgeBasic } from '../Basic'; export declare enum ACTION { TRIGGER = "triggerFullScreen", EXIT = "exitFunllScreen" } declare class FullScreen extends BridgeBasic { constructor(app: transport); trigger: () => void; exit: () => void; } export declare function create(app: transport): FullScreen; export {};