/**
 * The method used when calculating the Inflation Index Level from multiple points - the most common is Linear.
 * - Tag: 40811
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PaymentStreamInflationInterpolationMethod: Readonly<{
    /** None */
    readonly None: 0;
    /** Linear zero yield */
    readonly LinearZeroYield: 1;
}>;
export type PaymentStreamInflationInterpolationMethod = (typeof PaymentStreamInflationInterpolationMethod)[keyof typeof PaymentStreamInflationInterpolationMethod];
