Yes, global user roles are supported.
postgres=# create role my_user with login password 'my_user123' in role global;
CREATE ROLE
The following commands can be run on one shard and will be cascaded to the other shards automatically:
GRANT\REVOKE
CREATE ROLE ... IN ROLE GLOBAL / ALTER ROLE (for global role)
postgres=# grant CONNECT on DATABASE postgres TO my_user;
GRANT ROLE
postgres=# grant pg_monitor TO my_user;
GRANT ROLE
postgres=# \du
List of roles
Role name | Attributes | Member of
-----------+------------------------------------------------------------+--------------
my_user | | {pg_monitor}
postgres | Superuser, Create role, Create DB, Replication, Bypass RLS | {}
repluser | Replication | {}
The list of cascadable commands is being finalized and will be changed in future versions of Shardman.