/**
 * Format used to generate the MaturityMonthYear for each option
 * - Tag: 1303
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const MaturityMonthYearFormat: Readonly<{
    /** YearMonth Only (default) */
    readonly YearMonthOnly: 0;
    /** YearMonthDay */
    readonly YearMonthDay: 1;
    /** YearMonthWeek */
    readonly YearMonthWeek: 2;
}>;
export type MaturityMonthYearFormat = (typeof MaturityMonthYearFormat)[keyof typeof MaturityMonthYearFormat];
