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 types of shared set statuses. * * @generated from protobuf message google.ads.googleads.v11.enums.SharedSetStatusEnum */ export interface SharedSetStatusEnum { } /** * Enum listing the possible shared set statuses. * * @generated from protobuf enum google.ads.googleads.v11.enums.SharedSetStatusEnum.SharedSetStatus */ export declare enum SharedSetStatusEnum_SharedSetStatus { /** * 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 shared set is enabled. * * @generated from protobuf enum value: ENABLED = 2; */ ENABLED = 2, /** * The shared set is removed and can no longer be used. * * @generated from protobuf enum value: REMOVED = 3; */ REMOVED = 3 } declare class SharedSetStatusEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): SharedSetStatusEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SharedSetStatusEnum): SharedSetStatusEnum; internalBinaryWrite(message: SharedSetStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.SharedSetStatusEnum */ export declare const SharedSetStatusEnum: SharedSetStatusEnum$Type; export {};