import { RolePermission } from './role-permission.entity'; import { UserRole } from './user-role.entity'; export declare class Role { id: number; key: string; name: string; description: string; isSystemManaged: boolean; isDefault: boolean; createdAt: Date; updatedAt: Date; rolePermissions: RolePermission[]; userRoles: UserRole[]; }