import { ISharedVehiclesSystemInformationOutput } from "../../../schema-definitions"; import { ILimeSystemInformation } from "../../../schema-definitions/datasources"; import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation"; export declare class LimeSystemInformationTransformation extends AbstractTransformation { name: string; constructor(); transformCollection: (data: ILimeSystemInformation) => ISharedVehiclesSystemInformationOutput; protected transformInternal: (item: ILimeSystemInformation) => { operator_id: string; system_id: string; language: string; logo: string; name: string; short_name: string | null; operator: string | null; url: string | null; purchase_url: string | null; start_date: Date; phone_number: string | null; email: string | null; feed_contact_email: string | null; timezone: string; license_id: string | null; license_url: string; attribution_organization_name: string | null; attribution_url: string | null; terms_of_use_url: string | null; rental_app_id: string; }; }