import React from "react";
import { SelectableRoomAccommodation } from "../../types";
interface RoomOptionProps {
  room: SelectableRoomAccommodation;
  hasAlternatives?: boolean;
  selectedRoomPrice?: number;
  onAcommodationChange?: (
    accommodationCode: string,
    regimeCode: string
  ) => void;
  onRegimeChange?: (code: string) => void;
  onToggleAlternatives?: () => void;
}
declare const RoomOption: React.FC<RoomOptionProps>;
export default RoomOption;
