import type { transport } from '../../client/type'; import { BridgeBasic } from '../Basic'; export declare enum ACTION { STATE_REQUEST = "requestState" } export interface IAppState { email: string; phone: string; handle: string; lang: string; } declare class State extends BridgeBasic { constructor(app: transport); getState: () => void; } export declare function create(app: transport): State; export {};