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";
/**
 * An asset group product group view.
 *
 * @generated from protobuf message google.ads.googleads.v11.resources.AssetGroupProductGroupView
 */
export interface AssetGroupProductGroupView {
    /**
     * Output only. The resource name of the asset group product group view.
     * Asset group product group view resource names have the form:
     *
     * `customers/{customer_id}/assetGroupProductGroupViews/{asset_group_id}~{listing_group_filter_id}`
     *
     * @generated from protobuf field: string resource_name = 1;
     */
    resourceName: string;
    /**
     * Output only. The asset group associated with the listing group filter.
     *
     * @generated from protobuf field: string asset_group = 2;
     */
    assetGroup: string;
    /**
     * Output only. The resource name of the asset group listing group filter.
     *
     * @generated from protobuf field: string asset_group_listing_group_filter = 4;
     */
    assetGroupListingGroupFilter: string;
}
declare class AssetGroupProductGroupView$Type extends MessageType<AssetGroupProductGroupView> {
    constructor();
    create(value?: PartialMessage<AssetGroupProductGroupView>): AssetGroupProductGroupView;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AssetGroupProductGroupView): AssetGroupProductGroupView;
    internalBinaryWrite(message: AssetGroupProductGroupView, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.resources.AssetGroupProductGroupView
 */
export declare const AssetGroupProductGroupView: AssetGroupProductGroupView$Type;
export {};
