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 account link errors.
 *
 * @generated from protobuf message google.ads.googleads.v11.errors.AccountLinkErrorEnum
 */
export interface AccountLinkErrorEnum {
}
/**
 * Enum describing possible account link errors.
 *
 * @generated from protobuf enum google.ads.googleads.v11.errors.AccountLinkErrorEnum.AccountLinkError
 */
export declare enum AccountLinkErrorEnum_AccountLinkError {
    /**
     * 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,
    /**
     * The new link status is invalid.
     *
     * @generated from protobuf enum value: INVALID_STATUS = 2;
     */
    INVALID_STATUS = 2
}
declare class AccountLinkErrorEnum$Type extends MessageType<AccountLinkErrorEnum> {
    constructor();
    create(value?: PartialMessage<AccountLinkErrorEnum>): AccountLinkErrorEnum;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AccountLinkErrorEnum): AccountLinkErrorEnum;
    internalBinaryWrite(message: AccountLinkErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.errors.AccountLinkErrorEnum
 */
export declare const AccountLinkErrorEnum: AccountLinkErrorEnum$Type;
export {};
