/**
 * Type of reference obligation for credit derivatives contracts.
 * - Tag: 2012
 * - FIX Specification type: String
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const UnderlyingObligationType: Readonly<{
    /** Bond */
    readonly Bond: "0";
    /** Convertible bond */
    readonly ConvertibleBond: "1";
    /** Mortgage */
    readonly Mortgage: "2";
    /** Loan */
    readonly Loan: "3";
}>;
export type UnderlyingObligationType = (typeof UnderlyingObligationType)[keyof typeof UnderlyingObligationType];
