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 custom conversion goal errors.
 *
 * @generated from protobuf message google.ads.googleads.v11.errors.CustomConversionGoalErrorEnum
 */
export interface CustomConversionGoalErrorEnum {
}
/**
 * Enum describing possible custom conversion goal errors.
 *
 * @generated from protobuf enum google.ads.googleads.v11.errors.CustomConversionGoalErrorEnum.CustomConversionGoalError
 */
export declare enum CustomConversionGoalErrorEnum_CustomConversionGoalError {
    /**
     * 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,
    /**
     * Cannot find a conversion action with the specified id.
     *
     * @generated from protobuf enum value: INVALID_CONVERSION_ACTION = 2;
     */
    INVALID_CONVERSION_ACTION = 2,
    /**
     * The conversion action is not enabled so it cannot be included in a custom
     * conversion goal.
     *
     * @generated from protobuf enum value: CONVERSION_ACTION_NOT_ENABLED = 3;
     */
    CONVERSION_ACTION_NOT_ENABLED = 3,
    /**
     * The custom conversion goal cannot be removed because it's linked to a
     * campaign.
     *
     * @generated from protobuf enum value: CANNOT_REMOVE_LINKED_CUSTOM_CONVERSION_GOAL = 4;
     */
    CANNOT_REMOVE_LINKED_CUSTOM_CONVERSION_GOAL = 4,
    /**
     * Custom goal with the same name already exists.
     *
     * @generated from protobuf enum value: CUSTOM_GOAL_DUPLICATE_NAME = 5;
     */
    CUSTOM_GOAL_DUPLICATE_NAME = 5,
    /**
     * Custom goal with the same conversion action list already exists.
     *
     * @generated from protobuf enum value: DUPLICATE_CONVERSION_ACTION_LIST = 6;
     */
    DUPLICATE_CONVERSION_ACTION_LIST = 6
}
declare class CustomConversionGoalErrorEnum$Type extends MessageType<CustomConversionGoalErrorEnum> {
    constructor();
    create(value?: PartialMessage<CustomConversionGoalErrorEnum>): CustomConversionGoalErrorEnum;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CustomConversionGoalErrorEnum): CustomConversionGoalErrorEnum;
    internalBinaryWrite(message: CustomConversionGoalErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.errors.CustomConversionGoalErrorEnum
 */
export declare const CustomConversionGoalErrorEnum: CustomConversionGoalErrorEnum$Type;
export {};
