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 the experiment async action status.
 *
 * @generated from protobuf message google.ads.googleads.v11.enums.AsyncActionStatusEnum
 */
export interface AsyncActionStatusEnum {
}
/**
 * The async action status of the experiment.
 *
 * @generated from protobuf enum google.ads.googleads.v11.enums.AsyncActionStatusEnum.AsyncActionStatus
 */
export declare enum AsyncActionStatusEnum_AsyncActionStatus {
    /**
     * Not specified.
     *
     * @generated from protobuf enum value: UNSPECIFIED = 0;
     */
    UNSPECIFIED = 0,
    /**
     * The value is unknown in this version.
     *
     * @generated from protobuf enum value: UNKNOWN = 1;
     */
    UNKNOWN = 1,
    /**
     * Action has not started.
     *
     * @generated from protobuf enum value: NOT_STARTED = 2;
     */
    NOT_STARTED = 2,
    /**
     * Action is in progress.
     *
     * @generated from protobuf enum value: IN_PROGRESS = 3;
     */
    IN_PROGRESS = 3,
    /**
     * Action has completed successfully.
     *
     * @generated from protobuf enum value: COMPLETED = 4;
     */
    COMPLETED = 4,
    /**
     * Action has failed.
     *
     * @generated from protobuf enum value: FAILED = 5;
     */
    FAILED = 5,
    /**
     * Action has completed successfully with warnings.
     *
     * @generated from protobuf enum value: COMPLETED_WITH_WARNING = 6;
     */
    COMPLETED_WITH_WARNING = 6
}
declare class AsyncActionStatusEnum$Type extends MessageType<AsyncActionStatusEnum> {
    constructor();
    create(value?: PartialMessage<AsyncActionStatusEnum>): AsyncActionStatusEnum;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AsyncActionStatusEnum): AsyncActionStatusEnum;
    internalBinaryWrite(message: AsyncActionStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.enums.AsyncActionStatusEnum
 */
export declare const AsyncActionStatusEnum: AsyncActionStatusEnum$Type;
export {};
