import 'dingtalk-jsapi/entry/union'; interface IOpenAuthOpt { clientId: string; corpId?: string; rpcScope?: string; fieldScope?: string; type: string | number; from?: string; } /** * @name openAuth * @category biz Helpers * @summary 调起授权弹框 * @description * 支持小程序和H5微应用 * * @param {Object} opt - 打开参数配置 * @returns {Promise} */ export declare function openAuth(opt: IOpenAuthOpt): Promise; export {};