/**
 * Specifies the type of tick rule which is being described
 * - Tag: 1209
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TickRuleType: Readonly<{
    /** Regular trading */
    readonly RegularTrading: 0;
    /** Variable cabinet */
    readonly VariableCabinet: 1;
    /** Fixed cabinet */
    readonly FixedCabinet: 2;
    /** Traded as a spread leg */
    readonly TradedAsASpreadLeg: 3;
    /** Settled as a spread leg */
    readonly SettledAsASpreadLeg: 4;
    /** Traded as spread
        Basis points spread */
    readonly TradedAsSpread: 5;
}>;
export type TickRuleType = (typeof TickRuleType)[keyof typeof TickRuleType];
