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";
/**
 * A campaign audience view.
 * Includes performance data from interests and remarketing lists for Display
 * Network and YouTube Network ads, and remarketing lists for search ads (RLSA),
 * aggregated by campaign and audience criterion. This view only includes
 * audiences attached at the campaign level.
 *
 * @generated from protobuf message google.ads.googleads.v11.resources.CampaignAudienceView
 */
export interface CampaignAudienceView {
    /**
     * Output only. The resource name of the campaign audience view.
     * Campaign audience view resource names have the form:
     *
     * `customers/{customer_id}/campaignAudienceViews/{campaign_id}~{criterion_id}`
     *
     * @generated from protobuf field: string resource_name = 1;
     */
    resourceName: string;
}
declare class CampaignAudienceView$Type extends MessageType<CampaignAudienceView> {
    constructor();
    create(value?: PartialMessage<CampaignAudienceView>): CampaignAudienceView;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CampaignAudienceView): CampaignAudienceView;
    internalBinaryWrite(message: CampaignAudienceView, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.resources.CampaignAudienceView
 */
export declare const CampaignAudienceView: CampaignAudienceView$Type;
export {};
