import * as React from "react"; import { JewishDay, BasicJewishDay } from "jewish-dates-core"; import { DateDisplay } from "./interfaces"; export interface DayProps extends JewishDay { isHebrew?: boolean; selectedDay?: BasicJewishDay; onClick: (day: BasicJewishDay) => void; onMouseOver?: (day: BasicJewishDay) => void; canSelect?: (day: BasicJewishDay) => boolean; customizeDayStyle?: (day: BasicJewishDay) => string; isRange?: boolean; startDay?: BasicJewishDay; endDay?: BasicJewishDay; dateDisplay?: DateDisplay; showHolidays?: boolean; /** Marks Shabbat (and tags Friday as `isErevShabbat`). On by default. */ showShabbat?: boolean; isIsrael?: boolean; /** Roving tabindex: 0 for the one entry point into the grid, -1 elsewhere. */ tabIndex?: number; } export declare const Day: React.FC;