import * as React from "react"; interface IMonthProps { date: Date; monthLongTexts: string[]; monthShortTexts: string[]; submonthElement: any; onChangeMonth: (month: any, e: any) => void; } export default function Month(props: IMonthProps): React.CElement<{ date: Date; monthLongTexts: string[]; monthShortTexts: string[]; submonthElement: any; onChangeMonth: (month: any, e: any) => void; }, React.Component<{ date: Date; monthLongTexts: string[]; monthShortTexts: string[]; submonthElement: any; onChangeMonth: (month: any, e: any) => void; }, any, any>>; export {};