/**  Represents a month in the Gregorian calendar. */
export declare enum Month {
    /**  The unspecified month. */
    MONTH_UNSPECIFIED = 0,
    /**  The month of January. */
    JANUARY = 1,
    /**  The month of February. */
    FEBRUARY = 2,
    /**  The month of March. */
    MARCH = 3,
    /**  The month of April. */
    APRIL = 4,
    /**  The month of May. */
    MAY = 5,
    /**  The month of June. */
    JUNE = 6,
    /**  The month of July. */
    JULY = 7,
    /**  The month of August. */
    AUGUST = 8,
    /**  The month of September. */
    SEPTEMBER = 9,
    /**  The month of October. */
    OCTOBER = 10,
    /**  The month of November. */
    NOVEMBER = 11,
    /**  The month of December. */
    DECEMBER = 12
}
export declare namespace Month {
    const name = "google.type.Month";
}
//# sourceMappingURL=month.d.ts.map