import { Repository } from 'typeorm'; import { IRole, ITenant, IRoleMigrateInput } from '@metad/contracts'; import { TenantAwareCrudService } from './../core/crud'; import { Role } from './role.entity'; export declare class RoleService extends TenantAwareCrudService { private readonly roleRepository; constructor(roleRepository: Repository); createBulk(tenants: ITenant[]): Promise; migrateRoles(): Promise; }