export declare enum UserStatus {
    ACTIVE = "ACTIVE",
    PENDING = "PENDING",
    SUSPENDED = "SUSPENDED",
    CANCELLED = "CANCELLED"
}
