import { BuyXPayYPromotion, ExternalPromotion, FixedAmountPromotion, FixedPricePromotion, FlexPromotion, FreeGiftPromotion, FreeShippingPromotion, PercentageDiscountPromotion } from '@commercelayer/sdk'; import { ResourceToProps } from '../types'; type Promotion = BuyXPayYPromotion | ExternalPromotion | FixedAmountPromotion | FixedPricePromotion | FlexPromotion | FreeGiftPromotion | FreeShippingPromotion | PercentageDiscountPromotion; export declare const promotionToProps: ResourceToProps; export {};