import { IUser } from '@metad/contracts'; import { ConfigService } from '@metad/server-config'; import { CommandBus, ICommandHandler } from '@nestjs/cqrs'; import { I18nService } from 'nestjs-i18n'; import { RoleService } from '../../../role'; import { UserService } from '../../user.service'; import { UserBulkCreateCommand } from '../user.bulk.create.command'; export declare class UserBulkCreateHandler implements ICommandHandler { private readonly commandBus; private readonly userService; private readonly roleService; private readonly i18n; protected readonly configService: ConfigService; protected readonly saltRounds: number; constructor(commandBus: CommandBus, userService: UserService, roleService: RoleService, i18n: I18nService); execute(command: UserBulkCreateCommand): Promise; }