/**
 * The side of the party paying the payment.
 * - Tag: 40214
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PaymentPaySide: Readonly<{
    /** Buy */
    readonly Buy: 1;
    /** Sell */
    readonly Sell: 2;
}>;
export type PaymentPaySide = (typeof PaymentPaySide)[keyof typeof PaymentPaySide];
