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