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 statuses of a campaign draft.
 *
 * @generated from protobuf message google.ads.googleads.v11.enums.CampaignDraftStatusEnum
 */
export interface CampaignDraftStatusEnum {
}
/**
 * Possible statuses of a campaign draft.
 *
 * @generated from protobuf enum google.ads.googleads.v11.enums.CampaignDraftStatusEnum.CampaignDraftStatus
 */
export declare enum CampaignDraftStatusEnum_CampaignDraftStatus {
    /**
     * The status has not been specified.
     *
     * @generated from protobuf enum value: UNSPECIFIED = 0;
     */
    UNSPECIFIED = 0,
    /**
     * Used for return value only. Represents value unknown in this version.
     *
     * @generated from protobuf enum value: UNKNOWN = 1;
     */
    UNKNOWN = 1,
    /**
     * Initial state of the draft, the advertiser can start adding changes with
     * no effect on serving.
     *
     * @generated from protobuf enum value: PROPOSED = 2;
     */
    PROPOSED = 2,
    /**
     * The campaign draft is removed.
     *
     * @generated from protobuf enum value: REMOVED = 3;
     */
    REMOVED = 3,
    /**
     * Advertiser requested to promote draft's changes back into the original
     * campaign. Advertiser can poll the long running operation returned by
     * the promote action to see the status of the promotion.
     *
     * @generated from protobuf enum value: PROMOTING = 5;
     */
    PROMOTING = 5,
    /**
     * The process to merge changes in the draft back to the original campaign
     * has completed successfully.
     *
     * @generated from protobuf enum value: PROMOTED = 4;
     */
    PROMOTED = 4,
    /**
     * The promotion failed after it was partially applied. Promote cannot be
     * attempted again safely, so the issue must be corrected in the original
     * campaign.
     *
     * @generated from protobuf enum value: PROMOTE_FAILED = 6;
     */
    PROMOTE_FAILED = 6
}
declare class CampaignDraftStatusEnum$Type extends MessageType<CampaignDraftStatusEnum> {
    constructor();
    create(value?: PartialMessage<CampaignDraftStatusEnum>): CampaignDraftStatusEnum;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CampaignDraftStatusEnum): CampaignDraftStatusEnum;
    internalBinaryWrite(message: CampaignDraftStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.enums.CampaignDraftStatusEnum
 */
export declare const CampaignDraftStatusEnum: CampaignDraftStatusEnum$Type;
export {};
