import type { IPostMessageRequestId } from './types'; export declare const MfaDebugConfig: { debug: boolean; logPrefix: string; }; /** * 设置监听器,接收回调获取请求ID */ export declare const appGetRequestId: (callback: (data: IPostMessageRequestId) => void) => void; /** * 移除请求ID的监听器 */ export declare const removeGetRequestIdListener: () => void;