import { BookingOptionPax, BookingPackagePax, BookingPackageRoom } from '@qite/tide-client/build/types';
import React from 'react';
interface OptionRoomProps {
  packageRoom: BookingPackageRoom;
  pax: BookingPackagePax[];
  optionPax?: BookingOptionPax[];
  onRoomChange: (index: number, accommodationCode: string, regimeCode: string | null) => void;
  includedServiceTypes?: number[];
}
declare const OptionRoom: React.FC<OptionRoomProps>;
export default OptionRoom;
