import { type AdjustmentType } from '../../enums/index.js';
import { AdjustmentItemTotals, AdjustmentProration } from '../adjustment/index.js';
import { type IAdjustmentItemResponse } from '../../types/index.js';
export declare class NextTransactionAdjustmentItem {
    readonly itemId: string;
    readonly type: AdjustmentType;
    readonly amount: string | null;
    readonly proration: AdjustmentProration | null;
    readonly totals: AdjustmentItemTotals | null;
    constructor(adjustmentItem: IAdjustmentItemResponse);
}
