/**
 * The reason for updating the RefOrdID
 * - Tag: 1431
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const RefOrdIDReason: Readonly<{
    /** GTC from previous day */
    readonly GTCFromPreviousDay: 0;
    /** Partial Fill Remaining */
    readonly PartialFillRemaining: 1;
    /** Order Changed */
    readonly OrderChanged: 2;
}>;
export type RefOrdIDReason = (typeof RefOrdIDReason)[keyof typeof RefOrdIDReason];
