import { SyncMessageType } from '../sync/utils/EntityTemplate'; export declare const enum ApplicationType { Browser = "Browser", FastApp = "FastApp", FastGame = "FastGame", WeChat = "WeChat", OH = "OpenHarmony", Unknown = "Unknown" } export declare class ContextWrapper { static appType: ApplicationType; static appVersion: string; static setApplicationType(type: ApplicationType): void; static getApplicationType(): ApplicationType; static setApplicationVersion(version: string): void; static getApplicationVersion(): string; static getWSocketMessageType(data: any): SyncMessageType; }