import React from 'react'; import { Dayjs } from 'dayjs'; export interface MonthProps { year: number; month: number; daysSelected?: [Dayjs?, Dayjs?]; onDaySelect?: (date: Dayjs) => void; timezone: 'local' | 'utc'; } declare const Month: React.FC; export default Month;