/**
 * Specifies which issue (underlying bond) will receive payment priority in the event of a default.
    Used to define a CDS instrument.
    The payment priority is this: Senior Secured (SD), Senior (SR), Senior Non-Preferred (SN), Subordinated (SB), Mezzanine (MZ), Junior (JR).
 * - Tag: 1450
 * - FIX Specification type: String
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const Seniority: Readonly<{
    /** Senior Secured */
    readonly SeniorSecured: "SD";
    /** Senior */
    readonly Senior: "SR";
    /** Subordinated */
    readonly Subordinated: "SB";
    /** Junior
        In the context of MiFID II this value is used as identified in RTS 23 Annex I Table 3 Field 23 "Seniority of the bond". */
    readonly Junior: "JR";
    /** Mezzanine
        In the context of MiFID II this value is used as identified in RTS 23 Annex I Table 3 Field 23 "Seniority of the bond". */
    readonly Mezzanine: "MZ";
    /** Senior Non-Preferred
        For CDS reference obligations of non-preferred senior debt issued by European Financials that constitute a layer of debt ranking between the bank's normal senior debt but above the bank's normal tier 2 subordinated debt (reference: ISDA Credit Market Infrastructure Group). */
    readonly SeniorNonPreferred: "SN";
}>;
export type Seniority = (typeof Seniority)[keyof typeof Seniority];
