/** * Copyright (C) Paul Sarando * Distributed under the Eclipse Public License (http://www.eclipse.org/legal/epl-v10.html). */ import React from "react"; import { CalendarDate } from "../Utils"; import "./tolkien-calendars.css"; interface DateCellProps { className: string; currentDate: Date; date: CalendarDate; description: string; emoji: string; month: string; weekday: string; } interface GregorianDateDisplayProps { date: Date; } declare const dateKey: (date: CalendarDate, suffix?: string | number) => string; declare const getDateColor: (monthColor: string, date1: Date | undefined, date2: Date) => string; declare const GregorianDateDisplay: (props: GregorianDateDisplayProps) => React.JSX.Element; declare const DateCell: (props: DateCellProps) => React.JSX.Element; export { dateKey, getDateColor, GregorianDateDisplay }; export default DateCell;