import { ICommandHandler } from '@nestjs/cqrs'; import { EmployeeService } from '../../employee.service'; import { IEmployee } from '@metad/contracts'; import { EmployeeGetCommand } from '../employee.get.command'; export declare class EmployeeGetHandler implements ICommandHandler { private readonly employeeService; constructor(employeeService: EmployeeService); execute(command: EmployeeGetCommand): Promise; }