/**
 * Specifies the period type.
 * - Tag: 41011
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ComplexEventPeriodType: Readonly<{
    /** Asian Out */
    readonly AsianOut: 0;
    /** Asian In */
    readonly AsianIn: 1;
    /** Barrier Cap */
    readonly BarrierCap: 2;
    /** Barrier Floor */
    readonly BarrierFloor: 3;
    /** Knock Out */
    readonly KnockOut: 4;
    /** Knock In */
    readonly KnockIn: 5;
}>;
export type ComplexEventPeriodType = (typeof ComplexEventPeriodType)[keyof typeof ComplexEventPeriodType];
