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