/**
 * Time unit associated with the frequency of the bond's coupon payment.
 * - Tag: 1949
 * - FIX Specification type: String
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const CouponFrequencyUnit: Readonly<{
    /** Day */
    readonly Day: "D";
    /** Week */
    readonly Week: "Wk";
    /** Month */
    readonly Month: "Mo";
    /** Year */
    readonly Year: "Yr";
    /** Hour */
    readonly Hour: "H";
    /** Minute */
    readonly Minute: "Min";
    /** Second */
    readonly Second: "S";
    /** Term */
    readonly Term: "T";
}>;
export type CouponFrequencyUnit = (typeof CouponFrequencyUnit)[keyof typeof CouponFrequencyUnit];
