/**
 * Coupon type of the bond.
 * - Tag: 1946
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const CouponType: Readonly<{
    /** Zero */
    readonly Zero: 0;
    /** Fixed rate */
    readonly FixedRate: 1;
    /** Floating rate */
    readonly FloatingRate: 2;
    /** Structured */
    readonly Structured: 3;
}>;
export type CouponType = (typeof CouponType)[keyof typeof CouponType];
