/** * Status during the registration * - pending: new * - submitted: documents have been submitted * - approved: registration is completed * - rejected: registration has been rejected * - failed: something went wrong during the registration */ export declare enum USER_REGISTRATION_STATUS { PENDING = "pending", SUBMITTED = "submitted", APPROVED = "approved", REJECTED = "rejected", FAILED = "failed" } export declare enum USER_REGISTRATION_METHOD { NEW = "new", OVERWRITE = "overwrite", TRANSFER = "transfer" }