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 possible ad strengths. * * @generated from protobuf message google.ads.googleads.v11.enums.AdStrengthEnum */ export interface AdStrengthEnum { } /** * Enum listing the possible ad strengths. * * @generated from protobuf enum google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength */ export declare enum AdStrengthEnum_AdStrength { /** * 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, /** * The ad strength is currently pending. * * @generated from protobuf enum value: PENDING = 2; */ PENDING = 2, /** * No ads could be generated. * * @generated from protobuf enum value: NO_ADS = 3; */ NO_ADS = 3, /** * Poor strength. * * @generated from protobuf enum value: POOR = 4; */ POOR = 4, /** * Average strength. * * @generated from protobuf enum value: AVERAGE = 5; */ AVERAGE = 5, /** * Good strength. * * @generated from protobuf enum value: GOOD = 6; */ GOOD = 6, /** * Excellent strength. * * @generated from protobuf enum value: EXCELLENT = 7; */ EXCELLENT = 7 } declare class AdStrengthEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): AdStrengthEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AdStrengthEnum): AdStrengthEnum; internalBinaryWrite(message: AdStrengthEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.AdStrengthEnum */ export declare const AdStrengthEnum: AdStrengthEnum$Type; export {};