import { Mapper } from '../../../common/ddd/mapper.base'; import { ISentimentReportEnum } from '../../../common/enum/sentiment/sentiment-report.enum'; import { SelfSentimentReportEntity } from '../../../core/domain/entities/sentiment/self-sentiment-report.entity'; import { SentimentReportScore } from '../../../interface/dtos/sentiment/sentiment-report-score.dto'; export declare class ISelfSentimentReportPersistenceResponse { [ISentimentReportEnum.LocalDate]: string; [ISentimentReportEnum.ReportType]: string; [ISentimentReportEnum.Score]: string; } export declare class SelfSentimentReportMapper implements Mapper { toDomain(record: ISelfSentimentReportPersistenceResponse): SelfSentimentReportEntity; static toDomain(record: ISelfSentimentReportPersistenceResponse): SelfSentimentReportEntity; toResponse(entity: SelfSentimentReportEntity): SentimentReportScore; static toResponse(entity: SelfSentimentReportEntity): SentimentReportScore; } //# sourceMappingURL=self-sentiment-report.mapper.d.ts.map