import { BaseTransformation, ITransformation } from "@golemio/core/dist/integration-engine/transformations";
import { IZtpParkingJsonFeature } from "../../schema-definitions/datasources/interfaces/IZtpParkingJsonFeature";
import { IParking } from "../ParkingInterface";
export declare class ZtpParkingZonesTransformation extends BaseTransformation implements ITransformation {
    name: string;
    transformationDate: string;
    constructor(transformationDate: Date);
    transform: (data: IZtpParkingJsonFeature[]) => Promise<IParking[]>;
    transformElement: (element: IZtpParkingJsonFeature) => Promise<IParking>;
}
