/**
 * A category of CDS credit event in which the underlying bond experiences a restructuring.
    Used to define a CDS instrument.
 * - Tag: 1449
 * - FIX Specification type: String
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const RestructuringType: Readonly<{
    /** Full Restructuring */
    readonly FullRestructuring: "FR";
    /** Modified Restructuring */
    readonly ModifiedRestructuring: "MR";
    /** Modified Mod Restructuring */
    readonly ModifiedModRestructuring: "MM";
    /** No Restructuring specified */
    readonly NoRestructuringSpecified: "XR";
}>;
export type RestructuringType = (typeof RestructuringType)[keyof typeof RestructuringType];
