import { signIn, signOut, onLoginStateChanged, getUserInfo, getAccessToken, loginScope } from './user'; /** * @description 获取权限、登录相关信息的对象 */ export declare const auth: { signIn: typeof signIn; signOut: typeof signOut; onLoginStateChanged: typeof onLoginStateChanged; getUserInfo: typeof getUserInfo; getAccessToken: typeof getAccessToken; loginScope: typeof loginScope; readonly currentUser: import("../../types/auth").IUserInfoFromSDK; openIdLoginInWxApp: () => Promise; unionIdLoginInWxApp: () => Promise; modifyCurrentUser: any; };