import React from 'react';
import { CalendarProps } from './type';
declare const Calendar: {
    ({ as, className, mode: modeFromProps, value: valueFromProps, format, isShowWeekendDefault, firstDayOfWeek, week, controllerConfig, onMonthChange, ...props }: CalendarProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>;
    displayName: string;
};
export default Calendar;
