/**
 * When rate averaging is applicable, used to specify whether a weighted or unweighted average calculation method is to be used.
 * - Tag: 40806
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PaymentStreamAveragingMethod: Readonly<{
    /** Unweighted */
    readonly Unweighted: 0;
    /** Weighted */
    readonly Weighted: 1;
}>;
export type PaymentStreamAveragingMethod = (typeof PaymentStreamAveragingMethod)[keyof typeof PaymentStreamAveragingMethod];
