import type { CurrencyCodeType, StandardOutputFields } from './common.js';
export interface VerifyAddFixedPriceItemResponse extends StandardOutputFields {
    CategoryID?: string;
    DiscountReason?: 'CustomCode' | 'Promotion' | 'SpecialOffer';
    Fees: {
        Fee: {
            Fee: number | {
                value: number;
                currencyID: CurrencyCodeType;
            };
            Name: string;
            PromotionalDiscount: number | {
                value: number;
                currencyID: CurrencyCodeType;
            };
        };
    };
    ItemID: string;
    SKU?: string;
}
