/**
 * Specifies the yield calculation treatment for the index.
 * - Tag: 40796
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PaymentStreamRateTreatment: Readonly<{
    /** Bond equivalent yield */
    readonly BondEquivalentYield: 0;
    /** Money market yield */
    readonly MoneyMarketYield: 1;
}>;
export type PaymentStreamRateTreatment = (typeof PaymentStreamRateTreatment)[keyof typeof PaymentStreamRateTreatment];
