import { BaseTransformation, ITransformation } from "@golemio/core/dist/integration-engine/transformations"; import { IRekolaTrackablesDatasourceRack, ISharedBikesStationInformationOutput } from "../../../schema-definitions"; export declare class RekolaStationInformationTransformation extends BaseTransformation implements ITransformation { name: string; transform: (data: IRekolaTrackablesDatasourceRack[]) => Promise; protected transformElement: (element: IRekolaTrackablesDatasourceRack) => ISharedBikesStationInformationOutput; }