import React from 'react';
import { HotelResult } from '../../types';
interface HotelCardProps {
  result: HotelResult;
  translations?: any;
}
declare const HotelCard: React.FC<HotelCardProps>;
export default HotelCard;
