import { KendoComponent } from '../_types/component';
declare const options: {
    size: ("small" | "medium" | "large" | undefined)[];
};
export type KendoMultiViewCalendarOptions = {
    size?: (typeof options.size)[number] | null;
};
export type KendoMultiViewCalendarProps = KendoMultiViewCalendarOptions & {
    calendarTitleText?: string;
    calendarView?: 'month' | 'year' | 'decade' | 'century';
    orientation?: 'horizontal' | 'vertical';
    showCalendarFooter?: boolean;
    calendarCaption?: string;
    showTableHead?: boolean;
    showWeek?: boolean;
    dir?: 'ltr' | 'rtl';
};
export declare const MultiViewCalendar: KendoComponent<KendoMultiViewCalendarProps & React.HTMLAttributes<HTMLDivElement>>;
export default MultiViewCalendar;
