/**
 * The method of Forward Rate Agreement (FRA) discounting, if any, that will apply.
 * - Tag: 40816
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PaymentStreamFRADiscounting: Readonly<{
    /** None */
    readonly None: 0;
    /** International Swaps and Derivatives Association (ISDA) */
    readonly ISDA: 1;
    /** Australian Financial Markets Association (AFMA) */
    readonly AFMA: 2;
}>;
export type PaymentStreamFRADiscounting = (typeof PaymentStreamFRADiscounting)[keyof typeof PaymentStreamFRADiscounting];
