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