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 enum describing webpage condition operand in webpage criterion.
 *
 * @generated from protobuf message google.ads.googleads.v11.enums.WebpageConditionOperandEnum
 */
export interface WebpageConditionOperandEnum {
}
/**
 * The webpage condition operand in webpage criterion.
 *
 * @generated from protobuf enum google.ads.googleads.v11.enums.WebpageConditionOperandEnum.WebpageConditionOperand
 */
export declare enum WebpageConditionOperandEnum_WebpageConditionOperand {
    /**
     * Not specified.
     *
     * @generated from protobuf enum value: UNSPECIFIED = 0;
     */
    UNSPECIFIED = 0,
    /**
     * Used for return value only. Represents value unknown in this version.
     *
     * @generated from protobuf enum value: UNKNOWN = 1;
     */
    UNKNOWN = 1,
    /**
     * Operand denoting a webpage URL targeting condition.
     *
     * @generated from protobuf enum value: URL = 2;
     */
    URL = 2,
    /**
     * Operand denoting a webpage category targeting condition.
     *
     * @generated from protobuf enum value: CATEGORY = 3;
     */
    CATEGORY = 3,
    /**
     * Operand denoting a webpage title targeting condition.
     *
     * @generated from protobuf enum value: PAGE_TITLE = 4;
     */
    PAGE_TITLE = 4,
    /**
     * Operand denoting a webpage content targeting condition.
     *
     * @generated from protobuf enum value: PAGE_CONTENT = 5;
     */
    PAGE_CONTENT = 5,
    /**
     * Operand denoting a webpage custom label targeting condition.
     *
     * @generated from protobuf enum value: CUSTOM_LABEL = 6;
     */
    CUSTOM_LABEL = 6
}
declare class WebpageConditionOperandEnum$Type extends MessageType<WebpageConditionOperandEnum> {
    constructor();
    create(value?: PartialMessage<WebpageConditionOperandEnum>): WebpageConditionOperandEnum;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: WebpageConditionOperandEnum): WebpageConditionOperandEnum;
    internalBinaryWrite(message: WebpageConditionOperandEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.enums.WebpageConditionOperandEnum
 */
export declare const WebpageConditionOperandEnum: WebpageConditionOperandEnum$Type;
export {};
