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