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 where on the first search results page the * automated bidding system should target impressions for the * TargetImpressionShare bidding strategy. * * @generated from protobuf message google.ads.googleads.v11.enums.TargetImpressionShareLocationEnum */ export interface TargetImpressionShareLocationEnum { } /** * Enum describing possible goals. * * @generated from protobuf enum google.ads.googleads.v11.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation */ export declare enum TargetImpressionShareLocationEnum_TargetImpressionShareLocation { /** * 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, /** * Any location on the web page. * * @generated from protobuf enum value: ANYWHERE_ON_PAGE = 2; */ ANYWHERE_ON_PAGE = 2, /** * Top box of ads. * * @generated from protobuf enum value: TOP_OF_PAGE = 3; */ TOP_OF_PAGE = 3, /** * Top slot in the top box of ads. * * @generated from protobuf enum value: ABSOLUTE_TOP_OF_PAGE = 4; */ ABSOLUTE_TOP_OF_PAGE = 4 } declare class TargetImpressionShareLocationEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): TargetImpressionShareLocationEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TargetImpressionShareLocationEnum): TargetImpressionShareLocationEnum; internalBinaryWrite(message: TargetImpressionShareLocationEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.TargetImpressionShareLocationEnum */ export declare const TargetImpressionShareLocationEnum: TargetImpressionShareLocationEnum$Type; export {};