import { IContactRepository } from '../../../Domain/IRepository/IContactRepository'; import { UpdateContactCommand } from './UpdateContactCommand'; import { DetailContactDto } from '../../DTOs/ContactDto'; export declare class UpdateContactCommandHandler { private readonly contactRepo; constructor(contactRepo: IContactRepository); execute(cmd: UpdateContactCommand): Promise; } //# sourceMappingURL=UpdateContactCommandHandler.d.ts.map