/**
 * The notifying party is the party that notifies the other party when a credit event has occurred by means of a credit event notice. If more than one party is referenced as being the notifying party then either party may notify the other of a credit event occurring.
 * - Tag: 2134
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ComplexEventCreditEventNotifyingParty: Readonly<{
    /** Seller notifies */
    readonly SellerNotifies: 0;
    /** Buyer notifies */
    readonly BuyerNotifies: 1;
    /** Seller or buyer notifies */
    readonly SellerOrBuyerNotifies: 2;
}>;
export type ComplexEventCreditEventNotifyingParty = (typeof ComplexEventCreditEventNotifyingParty)[keyof typeof ComplexEventCreditEventNotifyingParty];
