import { IIsphkMeasurementsItem } from "../../../schema-definitions/datasources/isphk/interfaces/IIsphkMeasurements"; import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation"; import { IIsphkMeasurementSchema } from "./IIsphkMeasurementSchema"; export declare class IsphkMeasurementTransformation extends AbstractTransformation { private transformationDate; name: string; constructor(transformationDate: Date); protected transformInternal: (data: IIsphkMeasurementsItem) => IIsphkMeasurementSchema; }