import { Presenter } from '../../../common/ddd/presenter.base'; import { ChallengeInsightProgressDigitalIntensitySummaryAggregateRoot } from '../../../core/domain/aggregates/challenge-insights/challenge-insight-progress-digital-intensity.aggregate-root'; import { ChallengeInsightProgressDigitalWorkingHoursSummaryAggregateRoot } from '../../../core/domain/aggregates/challenge-insights/challenge-insight-progress-digital-working-hours.aggregate-root'; import { ChallengeInsightProgressFocusV1SummaryAggregateRoot } from '../../../core/domain/aggregates/challenge-insights/challenge-insight-progress-focus-v1.aggregate-root'; import { ChallengeInsightProgressSelfReportSummaryAggregateRoot } from '../../../core/domain/aggregates/challenge-insights/challenge-insight-progress-self-report.aggregate-root'; import { ChallengeInsightProgressSentimentSummaryAggregateRoot } from '../../../core/domain/aggregates/challenge-insights/challenge-insight-progress-sentiment.aggregate-root'; import { ChallengeInsightProgressTimeInAppSummaryAggregateRoot } from '../../../core/domain/aggregates/challenge-insights/challenge-insight-progress-time-in-app.aggregate-root'; import { ChallengeInsightProgressTimeInCallsSummaryAggregateRoot } from '../../../core/domain/aggregates/challenge-insights/challenge-insight-progress-time-in-calls.aggregate-root'; import { ChallengeInsightProgressTimeInCategorySummaryAggregateRoot } from '../../../core/domain/aggregates/challenge-insights/challenge-insight-progress-time-in-category.aggregate-root'; import { ChallengeInsightProgressTimeInMeetingsSummaryAggregateRoot } from '../../../core/domain/aggregates/challenge-insights/challenge-insight-progress-time-in-meetings.aggregate-root'; import { GetChallengeInsightProgressSummaryResponseDto } from '../../dtos/challenge-insights/get-challenge-insight-progress-summary.response.dto'; export type GetChallengeInsightProgressSummaryPresenterDomainEntities = ChallengeInsightProgressTimeInCategorySummaryAggregateRoot | ChallengeInsightProgressTimeInAppSummaryAggregateRoot | ChallengeInsightProgressTimeInCallsSummaryAggregateRoot | ChallengeInsightProgressFocusV1SummaryAggregateRoot | ChallengeInsightProgressSentimentSummaryAggregateRoot | ChallengeInsightProgressTimeInMeetingsSummaryAggregateRoot | ChallengeInsightProgressDigitalIntensitySummaryAggregateRoot | ChallengeInsightProgressSelfReportSummaryAggregateRoot | ChallengeInsightProgressDigitalWorkingHoursSummaryAggregateRoot; export declare class GetChallengeInsightProgressSummaryPresenter implements Presenter { constructor(); toResponse(entity: GetChallengeInsightProgressSummaryPresenterDomainEntities): GetChallengeInsightProgressSummaryResponseDto; } //# sourceMappingURL=get-challenge-insight-progress-summary.presenter.d.ts.map