/** * Copyright (C) Paul Sarando * Distributed under the Eclipse Public License (http://www.eclipse.org/legal/epl-v10.html). */ import React from "react"; import "../tolkien-calendars.css"; interface VerticalLayoutFillerProps { weekdays: Object[]; } declare const VerticalLayoutFiller: (props: VerticalLayoutFillerProps) => React.JSX.Element; declare enum MonthLayoutEnum { VERTICAL = "vertical", HORIZONTAL = "horizontal" } export { MonthLayoutEnum, VerticalLayoutFiller };