/**
 * Specifies the type of trade strategy.
 * - Tag: 2141
 * - FIX Specification type: String
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const StrategyType: Readonly<{
    /** Straddle */
    readonly Straddle: "STD";
    /** Strangle */
    readonly Strangle: "STG";
    /** Butterfly */
    readonly Butterfly: "BF";
    /** Condor */
    readonly Condor: "CNDR";
    /** Callable inversible snowball */
    readonly CallableInversibleSnowball: "CISN";
    /** Other */
    readonly Other: "OTHER";
}>;
export type StrategyType = (typeof StrategyType)[keyof typeof StrategyType];
