import { NextbikeDefinitionTransformation, NextbikeFreeBikeStatusTransformation, NextbikeStationInformationTransformation, NextbikeStationStatusTransformation, NextbikeSystemInformationTransformation, NextbikeSystemPricingPlansTransformation } 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): NextbikeSystemInformationTransformation | NextbikeFreeBikeStatusTransformation | NextbikeStationInformationTransformation | NextbikeStationStatusTransformation | NextbikeSystemPricingPlansTransformation; }