import type { CurrencyCodeType, StandardOutputFields } from './common.js';
export interface AddItemResponse extends StandardOutputFields {
    CategoryID?: string;
    DiscountReason?: 'CustomCode' | 'Promotion' | 'SpecialOffer';
    EndTime: string;
    Fees: {
        Fee: {
            Fee: number | {
                value: number;
                currencyID: CurrencyCodeType;
            };
            Name: string;
            PromotionalDiscount: number | {
                value: number;
                currencyID: CurrencyCodeType;
            };
        };
    };
    ItemID: string;
    ProductSuggestions?: {
        ProductSuggestion?: {
            EPID?: string;
            Recommended?: boolean;
            StockPhoto?: string;
            Title?: string;
        };
    };
    StartTime: string;
}
