import { ISmart4CityGraphQLReponse } from "../../datasources/smart4city/graphql/ISmart4CityGraphQLReponse"; import { IParkingMeasurements } from "../../ParkingInterface"; import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation"; export declare class Smart4CityMeasurementsTransformation extends AbstractTransformation { private source; private transformationDate; name: string; constructor(source: string, transformationDate: Date); protected transformInternal: (element: ISmart4CityGraphQLReponse) => IParkingMeasurements[]; }