import React from "react";
import { Settings } from "./types";
interface BookingWizardProps {
  productCode: string;
  productName: string;
  allotmentName?: string;
  tourCode?: string;
  thumbnailUrl?: string;
  settings: Settings;
}
declare const BookingWizard: React.FC<BookingWizardProps>;
export default BookingWizard;
