/**
 * Specifies whether or not SettlCurrFxRate (155) should be multiplied or divided.
 * - Tag: 156
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const SettlCurrFxRateCalc: Readonly<{
    /** Multiply */
    readonly Multiply: "M";
    /** Divide */
    readonly Divide: "D";
}>;
export type SettlCurrFxRateCalc = (typeof SettlCurrFxRateCalc)[keyof typeof SettlCurrFxRateCalc];
