import { CalendarProps } from 'antd';
import { FC } from 'react';
import { CALENDAR } from '../../Types';
export interface ICalendar<DataType = any> {
    ctype: typeof CALENDAR;
    props: CalendarProps<DataType>;
}
declare const Calendar: FC<ICalendar>;
export default Calendar;
