export declare const CALENDARTABLE_CLASSNAME = "k-calendar-table";
export type KendoCalendarTableProps = {
    calendarCaption?: string;
    showTableHead?: boolean;
    showWeek?: boolean;
    /** @aria aria-labelledby pointing to the calendar title */
    ariaLabelledBy?: string;
    /** @aria aria-activedescendant pointing to focused cell */
    ariaActiveDescendant?: string;
    /** @aria When true, this table acts as the grid root (standard calendar) */
    gridRole?: boolean;
};
export declare const CalendarTable: (props: KendoCalendarTableProps & React.HTMLAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element;
