/**
 * Describes whether discretionay price is static or floats
 * - Tag: 841
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const DiscretionMoveType: Readonly<{
    /** Floating (default) */
    readonly Floating: 0;
    /** Fixed */
    readonly Fixed: 1;
}>;
export type DiscretionMoveType = (typeof DiscretionMoveType)[keyof typeof DiscretionMoveType];
