import { NextbikeDefinitionTransformation, NextbikeStationInformationTransformation, NextbikeStationStatusTransformation, NextbikeSystemInformationTransformation, NextbikeSystemPricingPlansTransformation, NextbikeVehicleStatusTransformation, NextbikeVehicleTypeTransformation } from "./Nextbike"; import { NEXT_BIKE_SOURCES } from "../../schema-definitions/datasources/Nextbike"; export declare class NextbikeTransformationFactory { getDefinitionTransformation(sourceId: string): NextbikeDefinitionTransformation; getDataTransformation(sourceId: string, name: keyof typeof NEXT_BIKE_SOURCES): NextbikeVehicleTypeTransformation | NextbikeVehicleStatusTransformation | NextbikeSystemPricingPlansTransformation | NextbikeStationInformationTransformation | NextbikeStationStatusTransformation | NextbikeSystemInformationTransformation; }