import { IkasAmountType } from "../../../models/order/adjustment"; export declare type IkasCampaignOfferProduct = { applicablePrice: IkasCampaignOfferProductApplicablePriceEnum | null; countdownMinutes: number | null; description: string | null; discountAmount: number | null; discountType: IkasAmountType | null; excludedVariantIdList: string[] | null; id: string; order: number; productId: string; showCriteria: IkasCampaignOfferProductShowCriteria | null; skipOfferIfProductExistsInCart: boolean | null; title: string; translations?: IkasCampaignOfferProductTranslation[] | null; }; export declare type IkasCampaignOfferProductTranslation = { description: string | null; locale: string; title: string; }; export declare enum IkasCampaignOfferProductShowCriteria { PREVIOUS_ACCEPTED = "PREVIOUS_ACCEPTED", PREVIOUS_REJECTED = "PREVIOUS_REJECTED" } export declare enum IkasCampaignOfferProductApplicablePriceEnum { DISCOUNT_PRICE = "DISCOUNT_PRICE", SELL_PRICE = "SELL_PRICE" }