import { ISharedVehiclesRentalAppOutput } from "../../../schema-definitions"; import { ILimeRentalApps } from "../../../schema-definitions/datasources"; import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation"; export declare class LimeRentalAppsTransformation extends AbstractTransformation { name: string; constructor(); transformCollection: (data: ILimeRentalApps) => ISharedVehiclesRentalAppOutput; protected transformInternal: (item: ILimeRentalApps) => ISharedVehiclesRentalAppOutput; }