import { BaseTransformation, ITransformation } from "@golemio/core/dist/integration-engine"; import { IParkingMeasurements } from "../ParkingInterface"; export declare class KoridParkingDataTransformation extends BaseTransformation implements ITransformation { name: string; constructor(); transform: (data: any) => Promise; protected transformElement: (element: any) => IParkingMeasurements; }