import { WeChatUser } from './wechat.entities'; import type { WxSubscribeSceneType } from './wx.interfaces'; export declare class WxUserList { total: number; count: number; data: { openid: string[]; }; next_openid: string; } export declare class WxUserInfo { city: string; country: string; groupid: number; headimgurl: string; language: string; nickname: string; openid: string; province: string; qr_scene: number; qr_scene_str: string; remark: string; sex: number; subscribe: number; subscribe_scene: WxSubscribeSceneType; subscribe_time: number; tagid_list: string[]; unionid?: string; constructor(o: WxUserInfo); toWeChatUser(): WeChatUser; }