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