/**
 * Reference to the buyer of the cap rate option through its trade side.
 * - Tag: 40798
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PaymentStreamCapRateBuySide: Readonly<{
    /** Buyer of the trade */
    readonly Buyer: 1;
    /** Seller of the trade */
    readonly Seller: 2;
}>;
export type PaymentStreamCapRateBuySide = (typeof PaymentStreamCapRateBuySide)[keyof typeof PaymentStreamCapRateBuySide];
