/**
 * Describes the how the price limits are expressed.
 * - Tag: 1306
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PriceLimitType: Readonly<{
    /** Price (default) */
    readonly Price: 0;
    /** Ticks */
    readonly Ticks: 1;
    /** Percentage */
    readonly Percentage: 2;
}>;
export type PriceLimitType = (typeof PriceLimitType)[keyof typeof PriceLimitType];
