/**
 * The sub-classification or notional schedule type of the swap.
 * - Tag: 1575
 * - FIX Specification type: String
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const SwapSubClass: Readonly<{
    /** Amortizing notional schedule */
    readonly Amortizing: "AMTZ";
    /** Compounding */
    readonly Compounding: "COMP";
    /** Constant notional schedule */
    readonly ConstantNotionalSchedule: "CNST";
    /** Accreting notional schedule */
    readonly AccretingNotionalSchedule: "ACRT";
    /** Custom notional schedule */
    readonly CustomNotionalSchedule: "CUST";
}>;
export type SwapSubClass = (typeof SwapSubClass)[keyof typeof SwapSubClass];
