/**
 * Used to specify whether the principal is paying or receiving the fixed rate in an interest rate swap.
 * - Tag: 1933
 * - FIX Specification type: String
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const IRSDirection: Readonly<{
    /** Principal is paying fixed rate */
    readonly Pay: "PAY";
    /** Principal is receiving fixed rate */
    readonly Rcv: "RCV";
    /** Swap is float/float or fixed/fixed */
    readonly NA: "NA";
}>;
export type IRSDirection = (typeof IRSDirection)[keyof typeof IRSDirection];
