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<IParkingMachineWithTariff, IGeoJSONFeature> {
    name: string;
    transformToFeatureCollection: (elements: IParkingMachineWithTariff[]) => import("@golemio/core/dist/output-gateway/Geo").IGeoJSONFeatureCollection;
    protected transformInternal: (element: IParkingMachineWithTariff) => IGeoJSONFeature;
}
