interface IUserInfo { nickName: string; gender: number; language: string; city: string; province: string; country: string; avatarUrl: string; } interface Ires { code: number; msg: string; userInfo: { _id: string; usercode: string; user_name: string; name_spell: string; is_disabled: boolean; create_time: number; productid: string; avatar_path: string; avatar_name: string; avatar_type: string; email: string; phone: string; last_login_time: string; phone_verified: boolean; email_verified: boolean; is_admin: string; sessionid: string; }; } export default function active_login(spaceid: string, policyno: string, wx_user_info: IUserInfo): Promise; export {};