declare const options: {
    size: ("small" | "medium" | "large" | undefined)[];
};
export type KendoCalendarHeaderProps = {
    calendarView?: 'month' | 'year' | 'decade' | 'century';
    calendarTitleText?: string;
    showToday?: boolean;
    showNavigationButtons?: boolean;
    size?: (typeof options.size)[number] | null;
    orientation?: 'vertical' | 'horizontal';
    dir?: 'ltr' | 'rtl';
    /** @aria id for the title button, used for aria-labelledby from the grid */
    titleId?: string;
};
export declare const CalendarHeader: {
    (props: KendoCalendarHeaderProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    options: {
        size: ("small" | "medium" | "large" | undefined)[];
    };
    className: string;
    defaultOptions: {
        calendarTitleText: string;
        showToday: boolean;
        showNavigationButtons: boolean;
        orientation: string;
    };
};
export default CalendarHeader;
