export type KendoCalendarViewProps = {
    orientation?: 'vertical' | 'horizontal';
    calendarView?: 'month' | 'year' | 'decade' | 'century';
    /** @aria When true, this view acts as the grid root (multiview/range calendar) */
    gridRole?: boolean;
    /** @aria aria-labelledby pointing to the calendar title */
    ariaLabelledBy?: string;
};
export declare const CalendarView: {
    (props: KendoCalendarViewProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    className: string;
    defaultOptions: {
        readonly orientation: "horizontal";
        readonly calendarView: "month";
    };
};
export default CalendarView;
