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 extension setting device types.
 *
 * @generated from protobuf message google.ads.googleads.v11.enums.ExtensionSettingDeviceEnum
 */
export interface ExtensionSettingDeviceEnum {
}
/**
 * Possible device types for an extension setting.
 *
 * @generated from protobuf enum google.ads.googleads.v11.enums.ExtensionSettingDeviceEnum.ExtensionSettingDevice
 */
export declare enum ExtensionSettingDeviceEnum_ExtensionSettingDevice {
    /**
     * 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. The extensions in the extension setting will only serve on
     * mobile devices.
     *
     * @generated from protobuf enum value: MOBILE = 2;
     */
    MOBILE = 2,
    /**
     * Desktop. The extensions in the extension setting will only serve on
     * desktop devices.
     *
     * @generated from protobuf enum value: DESKTOP = 3;
     */
    DESKTOP = 3
}
declare class ExtensionSettingDeviceEnum$Type extends MessageType<ExtensionSettingDeviceEnum> {
    constructor();
    create(value?: PartialMessage<ExtensionSettingDeviceEnum>): ExtensionSettingDeviceEnum;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ExtensionSettingDeviceEnum): ExtensionSettingDeviceEnum;
    internalBinaryWrite(message: ExtensionSettingDeviceEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.enums.ExtensionSettingDeviceEnum
 */
export declare const ExtensionSettingDeviceEnum: ExtensionSettingDeviceEnum$Type;
export {};
