export declare const isAPP: boolean; export declare function checkApp(): boolean; export declare function isNativeiOS(): boolean; export declare function isNativeAndroid(): boolean; export declare function getUserFiles(_key: string): Promise; export declare function nativeCopy(str: string): Promise; export declare function setUserFiles(key: string, content: string): Promise; export declare function delUserFilesByKey(key: string): Promise; export declare function delUserFilesAll(): Promise; /** true隐藏 false显示 */ export declare function hideTitleBar(params: { isHideTitleBar: boolean; }): Promise; export declare function closeCurrentPage(): Promise; export declare function takeScreenshot(): Promise<{ code: string; msg: string; }>; export declare function getAppXClient(): Promise; interface XClient { "channelId": string; "deviceId": string; "fixVersion": number; "mainVersion": string; "os": string; "platformId": number; "pm": string; "screenSize": string; "sessionId": string; "signVersion": number; "source": number; "subVersion": number; "systemVersion": string; "version": string; } export {};