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";
/**
 * Shopping performance view.
 * Provides Shopping campaign statistics aggregated at several product dimension
 * levels. Product dimension values from Merchant Center such as brand,
 * category, custom attributes, product condition and product type will reflect
 * the state of each dimension as of the date and time when the corresponding
 * event was recorded.
 *
 * @generated from protobuf message google.ads.googleads.v11.resources.ShoppingPerformanceView
 */
export interface ShoppingPerformanceView {
    /**
     * Output only. The resource name of the Shopping performance view.
     * Shopping performance view resource names have the form:
     * `customers/{customer_id}/shoppingPerformanceView`
     *
     * @generated from protobuf field: string resource_name = 1;
     */
    resourceName: string;
}
declare class ShoppingPerformanceView$Type extends MessageType<ShoppingPerformanceView> {
    constructor();
    create(value?: PartialMessage<ShoppingPerformanceView>): ShoppingPerformanceView;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ShoppingPerformanceView): ShoppingPerformanceView;
    internalBinaryWrite(message: ShoppingPerformanceView, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.resources.ShoppingPerformanceView
 */
export declare const ShoppingPerformanceView: ShoppingPerformanceView$Type;
export {};
