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