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