import { BaseEntity } from '../database/base.entity';
import { BookingEntity } from './booking.entity';
import { HotelEntity } from './hotel.entity';
export declare class BookingHotelItemEntity extends BaseEntity {
    booking: BookingEntity;
    booking_id: string;
    hotel: HotelEntity;
    hotel_id: string;
    room_type: string | null;
    meal_plan: string | null;
    check_in_date: string;
    check_out_date: string;
    nights: number;
    pax_per_room: number;
    num_rooms: number;
    aweb: number;
    cweb: number;
    cnb: number;
    nightly_rates: {
        date: string;
        rate: number;
    }[] | null;
    subtotal: number;
    notes: string | null;
}
