import React from "react";
interface BookingProps {
    productCode: string;
    productName: string;
    thumbnailUrl?: string;
}
declare const Booking: React.FC<BookingProps>;
export default Booking;
