/** * 用户注册 * @param spaceid 系统参数spaceid * @param systemid 项目的systemid * @param productid 产品id * @param user_code 用户编码 * @param user_name 用户名 * @param username_unique 是否唯一true或false * @param email 邮箱 * @param phone 电话 * @param password 密码 * @param captcha 验证码 * @param reg_type 注册类型 */ export default function user_regist(systemid: string, productid: string, user_code: string, user_name: string, username_unique: boolean, email: string, phone: string, password: string, captcha: string, reg_type: 'usercode' | 'email' | 'phone'): Promise<{}>;