/**
 * Instructs when to refresh DisplayQty (1138).
 * - Tag: 1083
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const DisplayWhen: Readonly<{
    /** Immediate (after each fill) */
    readonly Immediate: "1";
    /** Exhaust (when DisplayQty = 0) */
    readonly Exhaust: "2";
}>;
export type DisplayWhen = (typeof DisplayWhen)[keyof typeof DisplayWhen];
