import { ISharedBikesBikeStatusOutput } from "../../../schema-definitions"; import { IHoppyGoVehicle } from "../../../schema-definitions/datasources"; import { BaseTransformation, ITransformation } from "@golemio/core/dist/integration-engine/transformations"; export declare class HoppyGoBikeStatusTransformation extends BaseTransformation implements ITransformation { name: string; transform: (data: { cars: IHoppyGoVehicle[]; transformationDate: Date; }) => Promise; protected transformElement: (element: { car: IHoppyGoVehicle; transformationDate: Date; }) => ISharedBikesBikeStatusOutput; private getCarLocation; private getVehicleTypeId; }