/**
 * Defines the type of action to take when the trigger hits.
 * - Tag: 1101
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const TriggerAction: Readonly<{
    /** Activate */
    readonly Activate: "1";
    /** Modify */
    readonly Modify: "2";
    /** Cancel */
    readonly Cancel: "3";
}>;
export type TriggerAction = (typeof TriggerAction)[keyof typeof TriggerAction];
