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 possible customer customizer errors. * * @generated from protobuf message google.ads.googleads.v11.errors.CustomerCustomizerErrorEnum */ export interface CustomerCustomizerErrorEnum { } /** * Enum describing possible customer customizer errors. * * @generated from protobuf enum google.ads.googleads.v11.errors.CustomerCustomizerErrorEnum.CustomerCustomizerError */ export declare enum CustomerCustomizerErrorEnum_CustomerCustomizerError { /** * Enum unspecified. * * @generated from protobuf enum value: UNSPECIFIED = 0; */ UNSPECIFIED = 0, /** * The received error code is not known in this version. * * @generated from protobuf enum value: UNKNOWN = 1; */ UNKNOWN = 1 } declare class CustomerCustomizerErrorEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): CustomerCustomizerErrorEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CustomerCustomizerErrorEnum): CustomerCustomizerErrorEnum; internalBinaryWrite(message: CustomerCustomizerErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.errors.CustomerCustomizerErrorEnum */ export declare const CustomerCustomizerErrorEnum: CustomerCustomizerErrorEnum$Type; export {};