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 policy approval statuses.
 *
 * @generated from protobuf message google.ads.googleads.v11.enums.PolicyApprovalStatusEnum
 */
export interface PolicyApprovalStatusEnum {
}
/**
 * The possible policy approval statuses. When there are several approval
 * statuses available the most severe one will be used. The order of severity
 * is DISAPPROVED, AREA_OF_INTEREST_ONLY, APPROVED_LIMITED and APPROVED.
 *
 * @generated from protobuf enum google.ads.googleads.v11.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus
 */
export declare enum PolicyApprovalStatusEnum_PolicyApprovalStatus {
    /**
     * No value has been specified.
     *
     * @generated from protobuf enum value: UNSPECIFIED = 0;
     */
    UNSPECIFIED = 0,
    /**
     * The received value is not known in this version.
     *
     * This is a response-only value.
     *
     * @generated from protobuf enum value: UNKNOWN = 1;
     */
    UNKNOWN = 1,
    /**
     * Will not serve.
     *
     * @generated from protobuf enum value: DISAPPROVED = 2;
     */
    DISAPPROVED = 2,
    /**
     * Serves with restrictions.
     *
     * @generated from protobuf enum value: APPROVED_LIMITED = 3;
     */
    APPROVED_LIMITED = 3,
    /**
     * Serves without restrictions.
     *
     * @generated from protobuf enum value: APPROVED = 4;
     */
    APPROVED = 4,
    /**
     * Will not serve in targeted countries, but may serve for users who are
     * searching for information about the targeted countries.
     *
     * @generated from protobuf enum value: AREA_OF_INTEREST_ONLY = 5;
     */
    AREA_OF_INTEREST_ONLY = 5
}
declare class PolicyApprovalStatusEnum$Type extends MessageType<PolicyApprovalStatusEnum> {
    constructor();
    create(value?: PartialMessage<PolicyApprovalStatusEnum>): PolicyApprovalStatusEnum;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: PolicyApprovalStatusEnum): PolicyApprovalStatusEnum;
    internalBinaryWrite(message: PolicyApprovalStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.enums.PolicyApprovalStatusEnum
 */
export declare const PolicyApprovalStatusEnum: PolicyApprovalStatusEnum$Type;
export {};
