/**
 * Identifies whether the value of a measure needs to be over or under a specific threshold to be successful.
 * - Tag: 3058
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TestThresholdType: Readonly<{
    /** Under */
    readonly Under: 0;
    /** Over */
    readonly Over: 1;
}>;
export type TestThresholdType = (typeof TestThresholdType)[keyof typeof TestThresholdType];
