import { BaseTransformation, ITransformation } from "@golemio/core/dist/integration-engine"; import { ISharedBikesPricingOutput, ISharedBikesPricingPlanOutput } from "../../../schema-definitions"; import { INextbikeSystemPricingPlans, INextbikeSystemPricingPlansInput } from "../../../schema-definitions/datasources"; export interface INextBikePricingPlansOutput { pricingPlan: ISharedBikesPricingPlanOutput[]; pricing: ISharedBikesPricingOutput[]; } export interface INextBikePricingPlansElementOutput { pricingPlan: ISharedBikesPricingPlanOutput; pricing: ISharedBikesPricingOutput[]; } export declare class NextbikeSystemPricingPlansTransformation extends BaseTransformation implements ITransformation { private sourceId; name: string; private readonly systemId; constructor(sourceId: string); transform: (datasourceData: INextbikeSystemPricingPlansInput) => Promise; protected transformElement: (item: INextbikeSystemPricingPlans & { last_updated: number; }) => INextBikePricingPlansElementOutput; private transformPricing; }