import { Adjustment } from './adjustment'; import { type IAdjustmentResponse } from '../../types'; import { Collection } from '../../internal/base'; export declare class AdjustmentCollection extends Collection { fromJson(data: IAdjustmentResponse): Adjustment; }