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