/**
 * Identifies the type of adjustment.
 * - Tag: 334
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const Adjustment: Readonly<{
    /** Cancel */
    readonly Cancel: 1;
    /** Error */
    readonly Error: 2;
    /** Correction */
    readonly Correction: 3;
}>;
export type Adjustment = (typeof Adjustment)[keyof typeof Adjustment];
