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 the format of the web page where the tracking
 * tag and snippet will be installed.
 *
 * @generated from protobuf message google.ads.googleads.v11.enums.TrackingCodePageFormatEnum
 */
export interface TrackingCodePageFormatEnum {
}
/**
 * The format of the web page where the tracking tag and snippet will be
 * installed.
 *
 * @generated from protobuf enum google.ads.googleads.v11.enums.TrackingCodePageFormatEnum.TrackingCodePageFormat
 */
export declare enum TrackingCodePageFormatEnum_TrackingCodePageFormat {
    /**
     * 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,
    /**
     * Standard HTML page format.
     *
     * @generated from protobuf enum value: HTML = 2;
     */
    HTML = 2,
    /**
     * Google AMP page format.
     *
     * @generated from protobuf enum value: AMP = 3;
     */
    AMP = 3
}
declare class TrackingCodePageFormatEnum$Type extends MessageType<TrackingCodePageFormatEnum> {
    constructor();
    create(value?: PartialMessage<TrackingCodePageFormatEnum>): TrackingCodePageFormatEnum;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TrackingCodePageFormatEnum): TrackingCodePageFormatEnum;
    internalBinaryWrite(message: TrackingCodePageFormatEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.enums.TrackingCodePageFormatEnum
 */
export declare const TrackingCodePageFormatEnum: TrackingCodePageFormatEnum$Type;
export {};
