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 webpage view.
 *
 * @generated from protobuf message google.ads.googleads.v11.resources.WebpageView
 */
export interface WebpageView {
    /**
     * Output only. The resource name of the webpage view.
     * Webpage view resource names have the form:
     *
     * `customers/{customer_id}/webpageViews/{ad_group_id}~{criterion_id}`
     *
     * @generated from protobuf field: string resource_name = 1;
     */
    resourceName: string;
}
declare class WebpageView$Type extends MessageType<WebpageView> {
    constructor();
    create(value?: PartialMessage<WebpageView>): WebpageView;
    internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: WebpageView): WebpageView;
    internalBinaryWrite(message: WebpageView, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
 * @generated MessageType for protobuf message google.ads.googleads.v11.resources.WebpageView
 */
export declare const WebpageView: WebpageView$Type;
export {};
