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