/**
 * For foreign exchange Quanto option feature.
 * - Tag: 2126
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ComplexEventQuoteBasis: Readonly<{
    /** Currency 1 per currency 2 */
    readonly Currency1PerCurrency2: 0;
    /** Currency 2 per currency 1 */
    readonly Currency2PerCurrency1: 1;
}>;
export type ComplexEventQuoteBasis = (typeof ComplexEventQuoteBasis)[keyof typeof ComplexEventQuoteBasis];
