import { AbstractEntity } from '../../abstractEntity'; import { PromotionCartResult, PromotionCartResultData } from './promotion'; export declare enum GetPromotionCartListResultFields { PROMOTIONS = "promotions" } export declare type GetPromotionCartListResultData = { [GetPromotionCartListResultFields.PROMOTIONS]: PromotionCartResultData[]; }; export declare class GetPromotionCartListResult extends AbstractEntity { #private; constructor(input: GetPromotionCartListResultData); getPromotions(): PromotionCartResult[]; toJSON(): GetPromotionCartListResultData; }