import { IPmdpMeasurementSchema } from "./IPmdpMeasurementSchema";
import { IPmdpMeasurement } from "../../../schema-definitions/datasources/pmdp/interfaces/IPmdpMeasurement";
import { IParking } from "../../../schema-definitions/models/interfaces/IParking";
import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation";
export declare class PmdpMeasurementTransformation extends AbstractTransformation<IPmdpMeasurement & IParking, IPmdpMeasurementSchema> {
    private transformationDate;
    name: string;
    constructor(transformationDate: Date);
    protected transformInternal: (data: IPmdpMeasurement & IParking) => IPmdpMeasurementSchema;
}
