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 forecast intervals.
 *
 * @generated from protobuf message google.ads.googleads.v11.enums.KeywordPlanForecastIntervalEnum
 */
export interface KeywordPlanForecastIntervalEnum {
}
/**
 * Forecast intervals.
 *
 * @generated from protobuf enum google.ads.googleads.v11.enums.KeywordPlanForecastIntervalEnum.KeywordPlanForecastInterval
 */
export declare enum KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval {
    /**
     * 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,
    /**
     * The next week date range for keyword plan. The next week is based
     * on the default locale of the user's account and is mostly SUN-SAT or
     * MON-SUN.
     * This can be different from next-7 days.
     *
     * @generated from protobuf enum value: NEXT_WEEK = 3;
     */
    NEXT_WEEK = 3,
    /**
     * The next month date range for keyword plan.
     *
     * @generated from protobuf enum value: NEXT_MONTH = 4;
     */
    NEXT_MONTH = 4,
    /**
     * The next quarter date range for keyword plan.
     *
     * @generated from protobuf enum value: NEXT_QUARTER = 5;
     */
    NEXT_QUARTER = 5
}
declare class KeywordPlanForecastIntervalEnum$Type extends MessageType<KeywordPlanForecastIntervalEnum> {
    constructor();
    create(value?: PartialMessage<KeywordPlanForecastIntervalEnum>): KeywordPlanForecastIntervalEnum;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: KeywordPlanForecastIntervalEnum): KeywordPlanForecastIntervalEnum;
    internalBinaryWrite(message: KeywordPlanForecastIntervalEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.enums.KeywordPlanForecastIntervalEnum
 */
export declare const KeywordPlanForecastIntervalEnum: KeywordPlanForecastIntervalEnum$Type;
export {};
