/**
 * Identifies whether the rate spread is applied to a long or short position.
 * - Tag: 40795
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PaymentStreamRateSpreadPositionType: Readonly<{
    /** Short */
    readonly Short: 0;
    /** Long */
    readonly Long: 1;
}>;
export type PaymentStreamRateSpreadPositionType = (typeof PaymentStreamRateSpreadPositionType)[keyof typeof PaymentStreamRateSpreadPositionType];
