import { ScoreDataType } from "@prisma/client"; import { ScoreRecordReadType } from "./definitions"; import { ScoreDomain, ScoreSourceType } from "../../domain/scores"; export type ScoreAggregation = { id: string; name: string; string_value: string | null; value: string; source: string; data_type: string; comment: string | null; }; export declare const convertToScore: (row: ScoreRecordReadType) => ScoreDomain; export declare const convertScoreAggregation: (row: ScoreAggregation) => { id: string; name: string; stringValue: string | null; value: number; source: ScoreSourceType; dataType: ScoreDataType; comment: string | null; }; //# sourceMappingURL=scores_converters.d.ts.map