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 enumeration of Google Ads devices available for targeting. * * @generated from protobuf message google.ads.googleads.v11.enums.DeviceEnum */ export interface DeviceEnum { } /** * Enumerates Google Ads devices available for targeting. * * @generated from protobuf enum google.ads.googleads.v11.enums.DeviceEnum.Device */ export declare enum DeviceEnum_Device { /** * Not specified. * * @generated from protobuf enum value: UNSPECIFIED = 0; */ UNSPECIFIED = 0, /** * The value is unknown in this version. * * @generated from protobuf enum value: UNKNOWN = 1; */ UNKNOWN = 1, /** * Mobile devices with full browsers. * * @generated from protobuf enum value: MOBILE = 2; */ MOBILE = 2, /** * Tablets with full browsers. * * @generated from protobuf enum value: TABLET = 3; */ TABLET = 3, /** * Computers. * * @generated from protobuf enum value: DESKTOP = 4; */ DESKTOP = 4, /** * Smart TVs and game consoles. * * @generated from protobuf enum value: CONNECTED_TV = 6; */ CONNECTED_TV = 6, /** * Other device types. * * @generated from protobuf enum value: OTHER = 5; */ OTHER = 5 } declare class DeviceEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): DeviceEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DeviceEnum): DeviceEnum; internalBinaryWrite(message: DeviceEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.DeviceEnum */ export declare const DeviceEnum: DeviceEnum$Type; export {};