import { BaseTransformation, ITransformation } from "@golemio/core/dist/integration-engine/transformations"; import { IRekolaTrackablesDatasource, IRekolaTrackablesDatasourceVehicle, ISharedBikesBikeStatusOutput } from "../../../schema-definitions"; export declare class RekolaBikeStatusTransformation extends BaseTransformation implements ITransformation { name: string; transform: (data: { trackables: IRekolaTrackablesDatasource; transformationDate: Date; }) => Promise; protected transformElement: (element: { bike: IRekolaTrackablesDatasourceVehicle; stationId: string | null; transformationDate: Date; }) => ISharedBikesBikeStatusOutput; }