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";
/**
 * Availability of a product offer.
 *
 * @generated from protobuf message google.ads.googleads.v11.enums.ProductChannelExclusivityEnum
 */
export interface ProductChannelExclusivityEnum {
}
/**
 * Enum describing the availability of a product offer.
 *
 * @generated from protobuf enum google.ads.googleads.v11.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity
 */
export declare enum ProductChannelExclusivityEnum_ProductChannelExclusivity {
    /**
     * 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 item is sold through one channel only, either local stores or online
     * as indicated by its ProductChannel.
     *
     * @generated from protobuf enum value: SINGLE_CHANNEL = 2;
     */
    SINGLE_CHANNEL = 2,
    /**
     * The item is matched to its online or local stores counterpart, indicating
     * it is available for purchase in both ShoppingProductChannels.
     *
     * @generated from protobuf enum value: MULTI_CHANNEL = 3;
     */
    MULTI_CHANNEL = 3
}
declare class ProductChannelExclusivityEnum$Type extends MessageType<ProductChannelExclusivityEnum> {
    constructor();
    create(value?: PartialMessage<ProductChannelExclusivityEnum>): ProductChannelExclusivityEnum;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ProductChannelExclusivityEnum): ProductChannelExclusivityEnum;
    internalBinaryWrite(message: ProductChannelExclusivityEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.enums.ProductChannelExclusivityEnum
 */
export declare const ProductChannelExclusivityEnum: ProductChannelExclusivityEnum$Type;
export {};
