/**
 * Indicates if a Cancel/Replace has caused an order to lose book priority.
 * - Tag: 638
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PriorityIndicator: Readonly<{
    /** Priority unchanged */
    readonly PriorityUnchanged: 0;
    /** Lost Priority as result of order change */
    readonly LostPriorityAsResultOfOrderChange: 1;
}>;
export type PriorityIndicator = (typeof PriorityIndicator)[keyof typeof PriorityIndicator];
