/// interface IMonthNumberProps { date: Date; monthShortTexts: string[]; onChangeMonth: (value: any, e: any) => void; } export default function MonthNumber(props: IMonthNumberProps): JSX.Element; export {};