/** * Copyright (C) Paul Sarando * Distributed under the Eclipse Public License (http://www.eclipse.org/legal/epl-v10.html). */ import React from "react"; interface IntercalaryDayProps { currentDate: Date; dayClassName?: string; dayExtra?: string | number; dayExtraClassName?: string; description: string; gregorian: Date; gregorianExtra?: Date; name: string | number; } declare const IntercalaryDay: (props: IntercalaryDayProps) => React.JSX.Element; export default IntercalaryDay;