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 unit of radius in proximity. * * @generated from protobuf message google.ads.googleads.v11.enums.ProximityRadiusUnitsEnum */ export interface ProximityRadiusUnitsEnum { } /** * The unit of radius distance in proximity (for example, MILES) * * @generated from protobuf enum google.ads.googleads.v11.enums.ProximityRadiusUnitsEnum.ProximityRadiusUnits */ export declare enum ProximityRadiusUnitsEnum_ProximityRadiusUnits { /** * 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, /** * Miles * * @generated from protobuf enum value: MILES = 2; */ MILES = 2, /** * Kilometers * * @generated from protobuf enum value: KILOMETERS = 3; */ KILOMETERS = 3 } declare class ProximityRadiusUnitsEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): ProximityRadiusUnitsEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ProximityRadiusUnitsEnum): ProximityRadiusUnitsEnum; internalBinaryWrite(message: ProximityRadiusUnitsEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.ProximityRadiusUnitsEnum */ export declare const ProximityRadiusUnitsEnum: ProximityRadiusUnitsEnum$Type; export {};