import { KendoComponent } from '../_types/component';
export type KendoCalendarInfiniteViewProps = {
    orientation?: 'vertical' | 'horizontal';
    calendarView?: 'month' | 'year' | 'decade' | 'century';
    headerText?: string;
    showWeekdays?: boolean;
    showWeekNumbers?: boolean;
    showNavigationButtons?: boolean;
    weekdayCellsText?: string[];
    /** @aria aria-labelledby for the content grid table */
    gridLabelledBy?: string;
};
export declare const CalendarInfiniteView: KendoComponent<KendoCalendarInfiniteViewProps & React.HTMLAttributes<HTMLDivElement>>;
export default CalendarInfiniteView;
