/**
 * Direction of the "tick".
 * - Tag: 274
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const TickDirection: Readonly<{
    /** Plus Tick */
    readonly PlusTick: "0";
    /** Zero-Plus Tick */
    readonly ZeroPlusTick: "1";
    /** Minus Tick */
    readonly MinusTick: "2";
    /** Zero-Minus Tick */
    readonly ZeroMinusTick: "3";
}>;
export type TickDirection = (typeof TickDirection)[keyof typeof TickDirection];
