import { ICreditAssessmentStatusResponse } from '@wayke-se/ecom'; import { OrderOptionsResponse } from '@wayke-se/ecom/dist-types/orders/order-options-response'; import { PaymentLookupResponse } from '@wayke-se/ecom/dist-types/payments/payment-lookup-response'; import { VehicleLookupResponse } from '@wayke-se/ecom/dist-types/vehicles/vehicle-lookup-response'; import { ICreditAssessmentStatus } from '../@types/CreditAssessmentStatus'; import { OrderOptions } from '../@types/OrderOptions'; import { PaymentLookup } from '../@types/PaymentLookup'; import { VehicleLookup } from '../@types/VehicleLookup'; export declare const convertPaymentLookupResponse: (plr: PaymentLookupResponse) => PaymentLookup; export declare const convertCreditAssessmentStatusResponse: (cCAr: ICreditAssessmentStatusResponse) => ICreditAssessmentStatus; export declare const convertOrderOptionsResponse: (cOOR: OrderOptionsResponse) => OrderOptions; export declare const convertVehicleLookupResponse: (cVLR: VehicleLookupResponse) => VehicleLookup;