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";
/**
 * Message describing AccountBudget statuses.
 *
 * @generated from protobuf message google.ads.googleads.v11.enums.AccountBudgetStatusEnum
 */
export interface AccountBudgetStatusEnum {
}
/**
 * The possible statuses of an AccountBudget.
 *
 * @generated from protobuf enum google.ads.googleads.v11.enums.AccountBudgetStatusEnum.AccountBudgetStatus
 */
export declare enum AccountBudgetStatusEnum_AccountBudgetStatus {
    /**
     * Not 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,
    /**
     * The account budget is pending approval.
     *
     * @generated from protobuf enum value: PENDING = 2;
     */
    PENDING = 2,
    /**
     * The account budget has been approved.
     *
     * @generated from protobuf enum value: APPROVED = 3;
     */
    APPROVED = 3,
    /**
     * The account budget has been cancelled by the user.
     *
     * @generated from protobuf enum value: CANCELLED = 4;
     */
    CANCELLED = 4
}
declare class AccountBudgetStatusEnum$Type extends MessageType<AccountBudgetStatusEnum> {
    constructor();
    create(value?: PartialMessage<AccountBudgetStatusEnum>): AccountBudgetStatusEnum;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AccountBudgetStatusEnum): AccountBudgetStatusEnum;
    internalBinaryWrite(message: AccountBudgetStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.enums.AccountBudgetStatusEnum
 */
export declare const AccountBudgetStatusEnum: AccountBudgetStatusEnum$Type;
export {};
