import { IRole } from '@metad/contracts'; import { CommandBus, ICommandHandler } from '@nestjs/cqrs'; import { RoleService } from '../../role.service'; import { TenantRoleBulkCreateCommand } from '../tenant-role-bulk-create.command'; export declare class TenantRoleBulkCreateHandler implements ICommandHandler { private readonly roleService; private readonly commandBus; constructor(roleService: RoleService, commandBus: CommandBus); execute(command: TenantRoleBulkCreateCommand): Promise; }