/** * * @description 检测是否有新版本可用, iOS无论是否有最新版本都直接跳转到应用商店, 安卓如果有新版, 则弹窗提示, 没有的话toast提示无新版本 * 桥接type: 56 * **示例代码** ```js import { checkForNewVersion } from '@kbapp/js-bridge'; checkForNewVersion() ``` */ export declare const checkForNewVersion: (params?: { success?: ((res: void) => void) | undefined; fail?: (error: import('./bridge-code').BridgeCode) => void; complete?: () => void; } | undefined) => Promise;