import type { Room } from "@/types/hotel" import type { Packages } from "@/types/requests/packages" import type { RoomsAvailability } from "@/types/trpc/routers/hotel/roomAvailability" import type { SelectRateSearchParams } from "../components/hotelReservation/selectRate/selectRate" export interface RatesProviderProps extends React.PropsWithChildren { booking: SelectRateSearchParams hotelType: string | undefined isUserLoggedIn: boolean packages: Packages | null roomCategories: Room[] roomsAvailability: RoomsAvailability | null vat: number }