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 merchant center errors.
 *
 * @generated from protobuf message google.ads.googleads.v11.errors.MerchantCenterErrorEnum
 */
export interface MerchantCenterErrorEnum {
}
/**
 * Enum describing Merchant Center errors.
 *
 * @generated from protobuf enum google.ads.googleads.v11.errors.MerchantCenterErrorEnum.MerchantCenterError
 */
export declare enum MerchantCenterErrorEnum_MerchantCenterError {
    /**
     * 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,
    /**
     * Merchant ID is either not found or not linked to the Google Ads customer.
     *
     * @generated from protobuf enum value: MERCHANT_ID_CANNOT_BE_ACCESSED = 2;
     */
    MERCHANT_ID_CANNOT_BE_ACCESSED = 2,
    /**
     * Customer not allowlisted for Shopping in Performance Max Campaign.
     *
     * @generated from protobuf enum value: CUSTOMER_NOT_ALLOWED_FOR_SHOPPING_PERFORMANCE_MAX = 3;
     */
    CUSTOMER_NOT_ALLOWED_FOR_SHOPPING_PERFORMANCE_MAX = 3
}
declare class MerchantCenterErrorEnum$Type extends MessageType<MerchantCenterErrorEnum> {
    constructor();
    create(value?: PartialMessage<MerchantCenterErrorEnum>): MerchantCenterErrorEnum;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: MerchantCenterErrorEnum): MerchantCenterErrorEnum;
    internalBinaryWrite(message: MerchantCenterErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.errors.MerchantCenterErrorEnum
 */
export declare const MerchantCenterErrorEnum: MerchantCenterErrorEnum$Type;
export {};
