/**
 * Defines applicable periods for interpolation.
 * - Tag: 42604
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PaymentStreamInterpolationPeriod: Readonly<{
    /** Initial
        Interpolation is applicable to the initial period only. */
    readonly Initial: 0;
    /** Initial and final
        Interpolation is applicable to the initial and final periods only. */
    readonly InitialAndFinal: 1;
    /** Final
        Interpolation is applicable to the final period only. */
    readonly Final: 2;
    /** Any period
        Interpolation is applicable to any non-standard period. */
    readonly AnyPeriod: 3;
}>;
export type PaymentStreamInterpolationPeriod = (typeof PaymentStreamInterpolationPeriod)[keyof typeof PaymentStreamInterpolationPeriod];
