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