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