import { type ConfirmOptions } from '@oinone/kunlun-engine'; import type { UrlQueryParameters } from '../basic/types'; /** *@description 二次确认弹窗 * * @param {string} confirm confirm文案 * @return {Promise} true or false * */ declare const executeConfirm: (confirm: string | ConfirmOptions) => Promise; /** * 查询登录后跳转的地址,并且初始化上下文 * 如果没有模块,那么会初始化上下文 */ export declare function homepageMaybeRuntimeContext(module?: string, force?: boolean): Promise; export { executeConfirm };