import { Basket, ShippingMethod, PaymentMethod, OrderAddress } from 'commercecloud-ocapi-client'; import { Cart, ShippingMethod as ApiShippingMethod, PaymentMethod as ApiPaymentMethod, OrderAddress as ApiOrderAddress, SfccIntegrationContext } from '../../../types'; export declare const mapOcapiCart: (context: SfccIntegrationContext, cart: Basket) => Promise; export declare const mapOcapiPaymentMethod: (method: ApiPaymentMethod) => PaymentMethod; export declare const mapOcapiShippingMethod: (method: ApiShippingMethod) => ShippingMethod; export declare const mapOcapiAddress: (address: OrderAddress) => ApiOrderAddress; export declare const mapToOcapiAddress: (address: ApiOrderAddress) => OrderAddress;