export declare const enterPlayground: () => void;
export declare const exitPlayground: () => void;
export type State = {
    isActive: boolean;
    orientation: 'p' | 'l';
    deviceId: string;
    wrapper: 'iframe' | 'div';
    iframeUrl: string;
};
export declare const viewportState: State;
