import { NextTransactionAdjustmentItem } from './next-transaction-adjustment-item.js'; import { TotalAdjustments } from '../shared/index.js'; import { type AdjustmentPreviewResponse } from '../../types/index.js'; export declare class NextTransactionAdjustmentPreview { readonly transactionId: string; readonly items: NextTransactionAdjustmentItem[]; readonly totals: TotalAdjustments | null; constructor(adjustmentPreview: AdjustmentPreviewResponse); }