import React, { ReactNode } from 'react'; interface Props { event: any; eventId: number; availableDates: string[]; selectedDate: string | null; timeSlotGroups: { [key: string]: any[]; }; setTimeSlotGroups: (value: { [key: string]: any[]; }) => void; setSelectedDate: (value: string | null) => void; getTimeSlots: (date: string | null, type?: string) => Promise; selectedTickets: any; handleTicketSelect: any; sortBySoldOut: boolean; hideTicketsHeader: boolean; ticketsHeaderComponent?: ReactNode; showGroupNameBlock?: boolean; currencySymbol?: string; isSeatMapAllowed?: boolean; } declare const TimeSlotsSection: React.FC; export default TimeSlotsSection;