/**
 * Used for derivatives that deliver into cash underlying.
 * - Tag: 974
 * - FIX Specification type: String
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const UnderlyingCashType: Readonly<{
    /** FIXED */
    readonly FIXED: "FIXED";
    /** DIFF */
    readonly DIFF: "DIFF";
}>;
export type UnderlyingCashType = (typeof UnderlyingCashType)[keyof typeof UnderlyingCashType];
