import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
import type { IBinaryWriter } from "@protobuf-ts/runtime";
import type { BinaryReadOptions } from "@protobuf-ts/runtime";
import type { IBinaryReader } from "@protobuf-ts/runtime";
import type { PartialMessage } from "@protobuf-ts/runtime";
import { MessageType } from "@protobuf-ts/runtime";
/**
 * Container for enumeration of months of the year, for example, "January".
 *
 * @generated from protobuf message google.ads.googleads.v11.enums.MonthOfYearEnum
 */
export interface MonthOfYearEnum {
}
/**
 * Enumerates months of the year, for example, "January".
 *
 * @generated from protobuf enum google.ads.googleads.v11.enums.MonthOfYearEnum.MonthOfYear
 */
export declare enum MonthOfYearEnum_MonthOfYear {
    /**
     * Not specified.
     *
     * @generated from protobuf enum value: UNSPECIFIED = 0;
     */
    UNSPECIFIED = 0,
    /**
     * The value is unknown in this version.
     *
     * @generated from protobuf enum value: UNKNOWN = 1;
     */
    UNKNOWN = 1,
    /**
     * January.
     *
     * @generated from protobuf enum value: JANUARY = 2;
     */
    JANUARY = 2,
    /**
     * February.
     *
     * @generated from protobuf enum value: FEBRUARY = 3;
     */
    FEBRUARY = 3,
    /**
     * March.
     *
     * @generated from protobuf enum value: MARCH = 4;
     */
    MARCH = 4,
    /**
     * April.
     *
     * @generated from protobuf enum value: APRIL = 5;
     */
    APRIL = 5,
    /**
     * May.
     *
     * @generated from protobuf enum value: MAY = 6;
     */
    MAY = 6,
    /**
     * June.
     *
     * @generated from protobuf enum value: JUNE = 7;
     */
    JUNE = 7,
    /**
     * July.
     *
     * @generated from protobuf enum value: JULY = 8;
     */
    JULY = 8,
    /**
     * August.
     *
     * @generated from protobuf enum value: AUGUST = 9;
     */
    AUGUST = 9,
    /**
     * September.
     *
     * @generated from protobuf enum value: SEPTEMBER = 10;
     */
    SEPTEMBER = 10,
    /**
     * October.
     *
     * @generated from protobuf enum value: OCTOBER = 11;
     */
    OCTOBER = 11,
    /**
     * November.
     *
     * @generated from protobuf enum value: NOVEMBER = 12;
     */
    NOVEMBER = 12,
    /**
     * December.
     *
     * @generated from protobuf enum value: DECEMBER = 13;
     */
    DECEMBER = 13
}
declare class MonthOfYearEnum$Type extends MessageType<MonthOfYearEnum> {
    constructor();
    create(value?: PartialMessage<MonthOfYearEnum>): MonthOfYearEnum;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: MonthOfYearEnum): MonthOfYearEnum;
    internalBinaryWrite(message: MonthOfYearEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.enums.MonthOfYearEnum
 */
export declare const MonthOfYearEnum: MonthOfYearEnum$Type;
export {};
