import React from 'react'; import { ICalendarEventBase } from '../interfaces'; import { ThemeInterface } from '../theme/ThemeInterface'; import { DeepPartial } from '../utils/utility-types'; import { CalendarContainerProps } from './CalendarContainer'; export interface CalendarProps extends CalendarContainerProps { theme?: DeepPartial; isRTL?: boolean; } declare function _Calendar({ theme, isRTL, ...props }: CalendarProps): React.JSX.Element; export declare const Calendar: typeof _Calendar; export {};