export declare class Amount { /** * The amount required in payment for the product/order in local currency (including any taxes and fees). */ value: number; /** * The ISO alpha-3 country code for the amount currency. */ currencyCode: string; constructor(amount: AmountProperties); } export interface AmountProperties { value: number; currencyCode: string; }