import { BaseTransformation, ITransformation } from "@golemio/core/dist/integration-engine/transformations"; import { IRekolaGeofencingDatasourceItem, ISharedBikesGeofencingZoneOutput, IRekolaGeofencingDatasourceZone } from "../../schema-definitions"; export declare class RekolaGeofencingTransformation extends BaseTransformation implements ITransformation { name: string; constructor(); transform: (data: IRekolaGeofencingDatasourceItem[]) => Promise; /** * Transform zones */ protected transformElement: (element: IRekolaGeofencingDatasourceZone) => ISharedBikesGeofencingZoneOutput; }