/**
 * Type of Peg Limit
 * - Tag: 837
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PegLimitType: Readonly<{
    /** Or better (default) - price improvement allowed */
    readonly OrBetter: 0;
    /** Strict - limit is a strict limit */
    readonly Strict: 1;
    /** Or worse - for a buy the peg limit is a minimum and for a sell the peg limit is a maximum (for use for orders which have a price range) */
    readonly OrWorse: 2;
}>;
export type PegLimitType = (typeof PegLimitType)[keyof typeof PegLimitType];
