import { ReactElement } from 'react';
import CalendarEvent from '../../../common/api/CalendarEvent';
interface MonthGridElementProps {
    date: Date;
    displayDayOfWeekIndication: boolean;
    indicatePreviousMonth: boolean;
    dayEvents: CalendarEvent[] | undefined;
}
declare function MonthGridElement(props: MonthGridElementProps): ReactElement;
export default MonthGridElement;
