/**
 * Compounding method.
 * - Tag: 40747
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PaymentStreamCompoundingMethod: Readonly<{
    /** None */
    readonly None: 0;
    /** Flat */
    readonly Flat: 1;
    /** Straight */
    readonly Straight: 2;
    /** Spread exclusive */
    readonly SpreadExclusive: 3;
}>;
export type PaymentStreamCompoundingMethod = (typeof PaymentStreamCompoundingMethod)[keyof typeof PaymentStreamCompoundingMethod];
