import { Relation } from 'typeorm'; import { RoleInterface } from '../interfaces/index.js'; import { User } from './user.entity.js'; export declare class Role implements RoleInterface { id: string; name: string; description: string; users: Relation; } //# sourceMappingURL=role.entity.d.ts.map