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