export type Room = { id: number name: string description: string size: string pricePerNight: number currency: string imageSrc: string } export type RoomProps = { room: Room }