I am not a WP expert but I had the same problem and solved it. If it can help someone:
AutoChimp delete users in MailChimp using delete_user hook. It seems this hook doesn’t work with WPMU. So I have added add_action('wpmu_delete_user','AC_OnDeleteUser');
in my functions.php file and now it works well.
Maybe it would work with ‘deleted_user’ hook too (notice deleteD). I didn’t test.