export type KendoCalendarInfiniteViewProps = {
    orientation?: 'vertical' | 'horizontal';
    calendarView?: 'month' | 'year' | 'decade' | 'century';
    headerText?: string;
    showWeekdays?: boolean;
    showWeekNumbers?: boolean;
    showNavigationButtons?: boolean;
    weekdayCellsText?: string[];
};
export declare const CalendarInfiniteView: {
    (props: KendoCalendarInfiniteViewProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    className: string;
    defaultOptions: {
        orientation: string;
        calendarView: string;
        headerText: string;
        showWeekdays: boolean;
        showNavigationButtons: boolean;
    };
};
export default CalendarInfiniteView;
