import { IkasCartCampaignOffer } from "./campaign-offer"; import { IkasAvailableShippingMethod } from "./available-shipping-method"; import { IkasOrder } from "../order"; export declare type IkasCart = { availableShippingMethods: IkasAvailableShippingMethod[] | null; campaignOffers: IkasCartCampaignOffer[] | null; couponCode: string | null; createdBy: IkasCartCreatedBy | null; shippingSettingsId: string | null; shippingZoneRateId: string | null; stockLocationId: string | null; } & IkasOrder; export declare enum IkasCartCreatedBy { ADMIN = "ADMIN", CUSTOMER = "CUSTOMER", UPSELL = "UPSELL" }