declare const options: {
    size: ("small" | "medium" | "large")[];
};
export type KendoCalendarOptions = {
    size?: (typeof options.size)[number] | null;
};
export type KendoCalendarProps = KendoCalendarOptions & {
    orientation?: 'vertical' | 'horizontal';
    calendarView?: 'month' | 'year' | 'decade' | 'century';
    calendarTitleText?: string;
    showTableHead?: boolean;
    showWeek?: boolean;
    showCalendarHeader?: boolean;
    showCalendarFooter?: boolean;
    calendarFooterText?: string;
    dir?: 'ltr' | 'rtl';
};
export declare const Calendar: {
    (props: KendoCalendarProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    states: any[];
    options: {
        size: ("small" | "medium" | "large")[];
    };
    className: string;
    defaultOptions: {
        readonly size: "medium";
        readonly showCalendarHeader: true;
        readonly orientation: "horizontal";
        readonly calendarView: "month";
        readonly calendarTitleText: "October 2021";
    };
};
export default Calendar;
