/**
 * Type of adjustment to be applied. Used for Position Change Submission (PCS), Position Adjustment (PAJ), and Customer Gross Margin (CGM).
 * - Tag: 718
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const AdjustmentType: Readonly<{
    /** Process request as margin disposition */
    readonly ProcessRequestAsMarginDisposition: 0;
    /** Delta plus */
    readonly DeltaPlus: 1;
    /** Delta minus */
    readonly DeltaMinus: 2;
    /** Final */
    readonly Final: 3;
    /** Customer specific position */
    readonly CustomerSpecificPosition: 4;
}>;
export type AdjustmentType = (typeof AdjustmentType)[keyof typeof AdjustmentType];
