import { ContactAggregate } from '../../../Domain/Contact/ContactAggregate'; import { ShortContactDto, DetailContactDto } from '../ContactDto'; export declare class ContactMapper { static toShortDto(contact: ContactAggregate): ShortContactDto; static toDetailDto(contact: ContactAggregate): DetailContactDto; static toShortDtoList(contacts: ContactAggregate[]): ShortContactDto[]; } //# sourceMappingURL=ContactMapper.d.ts.map