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 YouTube video registration errors.
 *
 * @generated from protobuf message google.ads.googleads.v11.errors.YoutubeVideoRegistrationErrorEnum
 */
export interface YoutubeVideoRegistrationErrorEnum {
}
/**
 * Enum describing YouTube video registration errors.
 *
 * @generated from protobuf enum google.ads.googleads.v11.errors.YoutubeVideoRegistrationErrorEnum.YoutubeVideoRegistrationError
 */
export declare enum YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError {
    /**
     * 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,
    /**
     * Video to be registered wasn't found.
     *
     * @generated from protobuf enum value: VIDEO_NOT_FOUND = 2;
     */
    VIDEO_NOT_FOUND = 2,
    /**
     * Video to be registered is not accessible (for example, private).
     *
     * @generated from protobuf enum value: VIDEO_NOT_ACCESSIBLE = 3;
     */
    VIDEO_NOT_ACCESSIBLE = 3,
    /**
     * Video to be registered is not eligible (for example, mature content).
     *
     * @generated from protobuf enum value: VIDEO_NOT_ELIGIBLE = 4;
     */
    VIDEO_NOT_ELIGIBLE = 4
}
declare class YoutubeVideoRegistrationErrorEnum$Type extends MessageType<YoutubeVideoRegistrationErrorEnum> {
    constructor();
    create(value?: PartialMessage<YoutubeVideoRegistrationErrorEnum>): YoutubeVideoRegistrationErrorEnum;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: YoutubeVideoRegistrationErrorEnum): YoutubeVideoRegistrationErrorEnum;
    internalBinaryWrite(message: YoutubeVideoRegistrationErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.errors.YoutubeVideoRegistrationErrorEnum
 */
export declare const YoutubeVideoRegistrationErrorEnum: YoutubeVideoRegistrationErrorEnum$Type;
export {};
