/// export interface FullHourCalendarProps { value: { start: Date; end: Date; }; onDateSelected?: ({ start, end }: DateToShowProps) => void; calendarColor?: string; isEnd?: boolean; onError?: (err: string) => void; hideFields?: Array<"year" | "today" | "yesterday" | "this_month" | "this_year" | "this_week" | "last_month" | "last_week">; isLoading?: boolean; disabled?: boolean; maxRange?: number; } export interface DateToShowProps { start: Date; end: Date; } export interface DayProps { value: Date; day: number; month: number; year: number; weekday: number; } export declare const FullHourCalendar: ({ value, onDateSelected, calendarColor, isEnd, onError, hideFields, isLoading, disabled, maxRange, }: FullHourCalendarProps) => JSX.Element;