import React from 'react'; import { CalendarOptions } from '@fullcalendar/react'; interface EventCalendarProps extends Omit { availableViews?: string[]; addButton?: { isPrimary?: boolean; text?: string; hint?: string; click?: (ev: MouseEvent) => void; }; } declare function EventCalendar({ availableViews, addButton, className, height, contentHeight, direction, plugins: userPlugins, ...restOptions }: EventCalendarProps): React.JSX.Element; export { EventCalendarProps, EventCalendar as default };