/**
 * Defines when the trigger will hit, i.e. the action specified by the trigger instructions will come into effect.
 * - Tag: 1100
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const TriggerType: Readonly<{
    /** Partial Execution */
    readonly PartialExecution: "1";
    /** Specified Trading Session */
    readonly SpecifiedTradingSession: "2";
    /** Next Auction */
    readonly NextAuction: "3";
    /** Price Movement */
    readonly PriceMovement: "4";
    /** On Order Entry or order modification entry */
    readonly OnOrderEntryOrModification: "5";
}>;
export type TriggerType = (typeof TriggerType)[keyof typeof TriggerType];
