import { IDataFactory } from '../../abstract/data.factory'; import { IntentEntity } from '../../intent/entities/intent.entity'; import { IntentDtoFactory } from '../../intent/factories/intent.dto.factory'; import { EntryDto } from '../dtos/entry.dto'; import { EntryEntity } from '../entities/entry.entity'; export declare class EntryDtoFactory extends IDataFactory<[ EntryEntity, IntentEntity ], EntryDto> { protected intentDtoFactory: IntentDtoFactory; constructor(intentDtoFactory: IntentDtoFactory); create([entry, intent]: [EntryEntity, IntentEntity]): EntryDto; }