/** * Copyright (C) Paul Sarando * Distributed under the Eclipse Public License (http://www.eclipse.org/legal/epl-v10.html). */ import React from "react"; import { ShireCalendarYear, ShireRegionEnum } from "../ShireReckoning"; import { GondorLeapYearRuleEnum } from "../GondorReckoning"; import "./tolkien-calendars.css"; import { MonthLayoutEnum } from "./controls/MonthViewLayout"; interface ShireCalendarProps { caption?: string | boolean; className?: string; region?: ShireRegionEnum; monthView?: number; monthViewLayout?: MonthLayoutEnum; startDay?: number; yearView?: boolean; date?: Date; startDate?: Date; calendarRules?: GondorLeapYearRuleEnum; calendar?: ShireCalendarYear; } declare const ShireCalendar: { (props: ShireCalendarProps): React.JSX.Element; REGION_NAMES_TOLKIEN: ShireRegionEnum; REGION_NAMES_SHIRE: ShireRegionEnum; REGION_NAMES_BREE: ShireRegionEnum; MONTH_VIEW_VERTICAL: MonthLayoutEnum; MONTH_VIEW_HORIZONTAL: MonthLayoutEnum; }; export default ShireCalendar;