import React from 'react';
import CalendarEventStore from '../calendar-event-store';
interface Props {
    activeDate: Date;
    eventStore: CalendarEventStore;
    onDayClick: (date: Date) => void;
}
declare const MonthView: ({ activeDate, eventStore, onDayClick }: Props) => React.JSX.Element;
export default MonthView;
