import { IEmployee } from '@metad/contracts'; import { ICommandHandler } from '@nestjs/cqrs'; import { AuthService } from '../../../auth/auth.service'; import { UserOrganizationService } from '../../../user-organization/user-organization.services'; import { EmployeeService } from '../../employee.service'; import { EmployeeCreateCommand } from '../employee.create.command'; import { EmailService } from '../../../email/email.service'; export declare class EmployeeCreateHandler implements ICommandHandler { private readonly employeeService; private readonly userOrganizationService; private readonly authService; private readonly emailService; constructor(employeeService: EmployeeService, userOrganizationService: UserOrganizationService, authService: AuthService, emailService: EmailService); execute(command: EmployeeCreateCommand): Promise; private _addHashAndLanguage; }