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