import React from 'react';
import { SearchResultsConfiguration } from './types';
interface SearchResultsProps {
  configuration: SearchResultsConfiguration;
  onBookingStarted?: () => void;
}
declare const SearchResults: React.FC<SearchResultsProps>;
export default SearchResults;
