This is a bit outdated to answer the question. But only for those who are looking for the same answer, I will receive from my answer.
Using Admin SDK
Firebase Administrator (node.js) - which is not available for the mobile platform - has the ability to disable / delete a user using the Admin SDK . To disable a user, set the disable option to TRUE .
NOTE. Using the administrator SDK is not possible if your application is a browser.

Using Realtime Database Rules
Another option is to restrict user access (read / write) to the database by setting the Users table in the real-time database. You can add a flag field ( active ) in this table, for example:
{ "users" : { "3sFGw6zlr8VylNuvmCWd9xG1CQ43" : { "active" : true, "address" : "#123, City", "createdBy" : "2016-12-20", "mobile" : "xxxxxxx" }, "posts" : { } }
In the above example - "3sFGw6zlr8VylNuvmCWd9xG1CQ43" is the uid generated by firebase authentication. This is the key to join this user table with the firebase user profile. The active field can easily set true or false with the usual database write operation.
And this flag field will be used to check if this account has access to database records. The following is an example:
{ "rules": { ".read": "auth !== null && root.child('users/' + auth.uid).child('active').val()==true", ".write": "auth !== null && root.child('users/' + auth.uid).child('active').val()==true", } }
This rule will check if the user is registered and has the flag field active . Otherwise, the user will not be able to read or write to the database. On the login page, you can also check this flag field for user login and log out if the active field is false so that the user cannot log in.
EDIT: You can use the cloud features (Admin SDK). Try taking care sometimes to read about Cloud features here . Firebase Cloud Functions is a pretty useful tool for the Realtime database.