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