declare enum RoleState {
    CREATE = "CREATE",
    ACTIVE = "ACTIVE",
    DELETING = "DELETING",
    DELETED = "DELETED"
}
export { RoleState };
