/**
 * Time unit associated with the inflation lag period.
 * - Tag: 40809
 * - FIX Specification type: String
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const PaymentStreamInflationLagUnit: Readonly<{
    /** Day */
    readonly Day: "D";
    /** Week */
    readonly Week: "Wk";
    /** Month */
    readonly Month: "Mo";
    /** Year */
    readonly Year: "Yr";
}>;
export type PaymentStreamInflationLagUnit = (typeof PaymentStreamInflationLagUnit)[keyof typeof PaymentStreamInflationLagUnit];
