import { Calendar, CalendarProps, Event, stringOrDate } from '../../index'; import * as React from 'react'; export interface withDragAndDropProps { onEventDrop?: (args: { event: TEvent, start: stringOrDate, end: stringOrDate, allDay: boolean }) => void; onEventResize?: (args: { event: TEvent, start: stringOrDate, end: stringOrDate, allDay: boolean }) => void; resizable?: boolean; } declare class DragAndDropCalendar extends React.Component & withDragAndDropProps> {} declare function withDragAndDrop(calendar: typeof Calendar): typeof DragAndDropCalendar; export default withDragAndDrop;