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"; /** * The status of custom interest. * * @generated from protobuf message google.ads.googleads.v11.enums.CustomInterestStatusEnum */ export interface CustomInterestStatusEnum { } /** * Enum containing possible custom interest types. * * @generated from protobuf enum google.ads.googleads.v11.enums.CustomInterestStatusEnum.CustomInterestStatus */ export declare enum CustomInterestStatusEnum_CustomInterestStatus { /** * 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, /** * Enabled status - custom interest is enabled and can be targeted to. * * @generated from protobuf enum value: ENABLED = 2; */ ENABLED = 2, /** * Removed status - custom interest is removed and cannot be used for * targeting. * * @generated from protobuf enum value: REMOVED = 3; */ REMOVED = 3 } declare class CustomInterestStatusEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): CustomInterestStatusEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CustomInterestStatusEnum): CustomInterestStatusEnum; internalBinaryWrite(message: CustomInterestStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.CustomInterestStatusEnum */ export declare const CustomInterestStatusEnum: CustomInterestStatusEnum$Type; export {};