/** * Indicates the various types of roles of a user in a team. */ type UserTeamRole = 'admin' | 'user' | 'guest'; /** * Indicates the various types of roles of a user in a team. */ declare enum UserTeamRoles { /** Represents that the user is an owner or administrator of the team. */ Admin = 0, /** Represents that the user is a standard member of the team. */ User = 1, /** Represents that the user does not have any role in the team. */ Guest = 2 } declare function mapUserTeamRole(value: UserTeamRoles): UserTeamRole; export { type UserTeamRole, UserTeamRoles, mapUserTeamRole };