/**
 * The classification or type of swap. Additional values may be used by mutual agreement of the counterparties.
 * - Tag: 1941
 * - FIX Specification type: String
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const SwapClass: Readonly<{
    /** Basis swap */
    readonly BasisSwap: "BS";
    /** Index swap */
    readonly IndexSwap: "IX";
    /** Broad-based security swap */
    readonly BroadBasedSecuritySwap: "BB";
    /** Basket swap */
    readonly BasketSwap: "SK";
}>;
export type SwapClass = (typeof SwapClass)[keyof typeof SwapClass];
