/**
 * The source of the payment stream floating rate index.
 * - Tag: 40790
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PaymentStreamRateIndexSource: Readonly<{
    /** Bloomberg */
    readonly Bloomberg: 0;
    /** Reuters */
    readonly Reuters: 1;
    /** Telerate */
    readonly Telerate: 2;
    /** Other */
    readonly Other: 99;
}>;
export type PaymentStreamRateIndexSource = (typeof PaymentStreamRateIndexSource)[keyof typeof PaymentStreamRateIndexSource];
