import React from 'react'; interface BookingData { slots: string[]; bookedSlots: { date: string; slots: string[]; }[]; availableSlots: { date: string; slots: string[]; }[]; } interface RNBookingProps { onDateChange?: (date: Date) => void; onDayPress?: (date?: Date) => void; bookingData: BookingData; colors?: { dateTimeBoxBackground: string; backgroundColor: string; availableSlotColor: string; selectedSlotColor: string; todayColor: string; bookedSlotColor: string; gapColor: string; notAvailableSlotColor: string; }; slotSize?: number; scrollToCurrentDate?: boolean; hideSlotInfoFooter?: boolean; } declare const RNBooking: React.FC; export default RNBooking; //# sourceMappingURL=index.d.ts.map