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 payment modes.
 *
 * @generated from protobuf message google.ads.googleads.v11.enums.PaymentModeEnum
 */
export interface PaymentModeEnum {
}
/**
 * Enum describing possible payment modes.
 *
 * @generated from protobuf enum google.ads.googleads.v11.enums.PaymentModeEnum.PaymentMode
 */
export declare enum PaymentModeEnum_PaymentMode {
    /**
     * 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,
    /**
     * Pay per click.
     *
     * @generated from protobuf enum value: CLICKS = 4;
     */
    CLICKS = 4,
    /**
     * Pay per conversion value. This mode is only supported by campaigns with
     * AdvertisingChannelType.HOTEL, BiddingStrategyType.COMMISSION, and
     * BudgetType.STANDARD.
     *
     * @generated from protobuf enum value: CONVERSION_VALUE = 5;
     */
    CONVERSION_VALUE = 5,
    /**
     * Pay per conversion. This mode is only supported by campaigns with
     * AdvertisingChannelType.DISPLAY (excluding
     * AdvertisingChannelSubType.DISPLAY_GMAIL), BiddingStrategyType.TARGET_CPA,
     * and BudgetType.FIXED_CPA. The customer must also be eligible for this
     * mode. See Customer.eligibility_failure_reasons for details.
     *
     * @generated from protobuf enum value: CONVERSIONS = 6;
     */
    CONVERSIONS = 6,
    /**
     * Pay per guest stay value. This mode is only supported by campaigns with
     * AdvertisingChannelType.HOTEL, BiddingStrategyType.COMMISSION, and
     * BudgetType.STANDARD.
     *
     * @generated from protobuf enum value: GUEST_STAY = 7;
     */
    GUEST_STAY = 7
}
declare class PaymentModeEnum$Type extends MessageType<PaymentModeEnum> {
    constructor();
    create(value?: PartialMessage<PaymentModeEnum>): PaymentModeEnum;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: PaymentModeEnum): PaymentModeEnum;
    internalBinaryWrite(message: PaymentModeEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.enums.PaymentModeEnum
 */
export declare const PaymentModeEnum: PaymentModeEnum$Type;
export {};
