import { DineroObject as IDineroObject, Currency } from 'dinero.js'; import { AdjustmentAmount as IAdjustmentAmount, AdjustmentOptions as IAdjustmentOptions, AdjustmentType } from '~core/helper/number'; import { TaxInclusion as ITaxInclusion } from '~core/helper/tax'; export declare class DineroObject implements IDineroObject { amount: number; precision: number; currency: Currency; } export declare class AdjustmentAmount implements IAdjustmentAmount { amount: number; precision: number; } export declare class AdjustmentOptions implements IAdjustmentOptions { type: AdjustmentType; amount: AdjustmentAmount; inclusive: boolean; } export declare class TaxInclusion implements ITaxInclusion { systemCode: string; inclusive: boolean; }