/// export interface DayCalendarProps { value: { start: Date | null; end: Date | null; }; onDateSelected?: (date: DateToShowProps) => void; calendarColor?: string; } export interface DateToShowProps { start: Date | null; end: Date | null; } export interface DayProps { value: Date; day: number; month: number; year: number; weekday: number; } export declare const DayCalendar: ({ value, onDateSelected, calendarColor, }: DayCalendarProps) => JSX.Element;