@qite/tide-booking-component
Version:
React Booking wizard & Booking product component for Tide
13 lines (12 loc) • 349 B
TypeScript
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;