import type { NamedResource } from "./namedResource"; import type { Permission } from "./permission"; export declare const UserRoleConstants: { SpaceManagerRole: string; }; export interface UserRoleResource extends NamedResource { Description: string; SupportedRestrictions: string[]; SpacePermissionDescriptions: string[]; SystemPermissionDescriptions: string[]; CanBeDeleted: boolean; GrantedSpacePermissions: Permission[]; GrantedSystemPermissions: Permission[]; }