import React from 'react'; import { CalendarEvent } from '../types'; interface DayViewProps { events: CalendarEvent[]; selectedDate: Date; styles: any; theme: any; renderEventCard?: (event: CalendarEvent, viewMode: 'day' | 'week' | 'month', isSelected: boolean, toggleSelection: () => void) => React.ReactNode; onEventPress?: (event: CalendarEvent) => void; daySelectedEventId: string | null; setDaySelectedEventId: (id: string | null) => void; timeSlots?: string[]; startHour?: number; formatDateDDMMYYYY?: (date: Date) => string; getEventContainerStyle?: (event: CalendarEvent) => any; renderTimeLabel?: (time: string) => React.ReactNode; } export declare const DayView: React.FC; export {}; //# sourceMappingURL=DayView.d.ts.map