/// export interface FullCalendarProps { value: DateToShowProps; onDateSelected?: (date: DateToShowProps) => void; hideFields?: Array<"year" | "today" | "yesterday" | "this_month" | "this_year" | "this_week" | "last_month" | "last_week">; calendarColor?: string; isLoading?: boolean; disabled?: boolean; } 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 FullCalendar: ({ value, onDateSelected, hideFields, calendarColor, isLoading, disabled, }: FullCalendarProps) => JSX.Element;