/**
 * Identifies whether the rate spread is an absolute value to be added to the index rate or a percentage of the index rate.
 * - Tag: 41206
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PaymentStreamRateSpreadType: Readonly<{
    /** Absolute */
    readonly Absolute: 0;
    /** Percentage */
    readonly Percentage: 1;
}>;
export type PaymentStreamRateSpreadType = (typeof PaymentStreamRateSpreadType)[keyof typeof PaymentStreamRateSpreadType];
