/** * * @description 获取APP订阅通知状态 * 桥接type: 72 * @returns {Promise<{ enabled: 0 | 1 }>} 1:开启;0:关闭 */ export declare const getAppSubscribeNotifyStatus: (params?: { success?: ((res: { enabled: 0 | 1; }) => void) | undefined; fail?: (error: import('./bridge-code').BridgeCode) => void; complete?: () => void; } | undefined) => Promise<{ enabled: 0 | 1; }>; /** * * @description 前往/打开 app订阅管理页面 * 桥接type: 73 */ export declare const openAppSubscribeNotifySettings: (params?: { success?: ((res: void) => void) | undefined; fail?: (error: import('./bridge-code').BridgeCode) => void; complete?: () => void; } | undefined) => Promise;