import { IParkingMachineWithTariff } from "../../../schema-definitions/models/interfaces/IParkingMachine"; import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation"; import { IGeoJSONFeature } from "@golemio/core/dist/output-gateway/Geo"; export declare class ParkingMachinesDtoTransformation extends AbstractTransformation { name: string; transformToFeatureCollection: (elements: IParkingMachineWithTariff[]) => import("@golemio/core/dist/output-gateway").IGeoJSONFeatureCollection; protected transformInternal: (element: IParkingMachineWithTariff) => IGeoJSONFeature; }