import { FunctionComponent } from 'react'; declare type Event = { 'id'?: string | number; 'label'?: string; 'startDate'?: string; 'endDate'?: string; 'eventType'?: string | number; 'loopType'?: string | number; }; interface ICalendarTable { calendarConfig: { type: string | number; name?: string | number; currentDate: string; }; colorConfig?: Record; dataEvents?: Array; onError?: (error: any, config: Record) => void; onClickEvent?: (object: Record) => void; sortEventFunc?: (events: any[]) => (any[]); formatDate?: string; } declare const CalendarTable: FunctionComponent; export default CalendarTable;