/**
 * Unit of measure for the Maturity Month Year Increment
 * - Tag: 1302
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const MaturityMonthYearIncrementUnits: Readonly<{
    /** Months */
    readonly Months: 0;
    /** Days */
    readonly Days: 1;
    /** Weeks */
    readonly Weeks: 2;
    /** Years */
    readonly Years: 3;
}>;
export type MaturityMonthYearIncrementUnits = (typeof MaturityMonthYearIncrementUnits)[keyof typeof MaturityMonthYearIncrementUnits];
