import { IPublicApiCacheDto } from "../../../../schema-definitions/vehicle-positions/redis/interfaces/IPublicApiCacheDto";
import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation";
import { IGeoJSONFeature } from "@golemio/core/dist/output-gateway/Geo";
export declare class PublicVehiclePositionsTransformation extends AbstractTransformation<IPublicApiCacheDto, IGeoJSONFeature> {
    name: string;
    protected transformInternal: ({ detailed_info, ...element }: IPublicApiCacheDto) => IGeoJSONFeature;
}
