export interface CalendarTheme {
    base: string;
    header: {
        base: string;
        prev: string;
        mid: string;
        next: string;
    };
    title: string;
    content: string;
    days: {
        header: string;
        dayOfWeek: string;
        week: string;
        day: string;
        outside: string;
        startRangeDate: string;
        cornerStartDateBottom: string;
        endRangeDate: string;
        cornerEndDateTop: string;
        range: string;
        selected: string;
        hover: string;
        today: string;
    };
    months: {
        root: string;
        month: string;
        selected: string;
    };
    years: {
        root: string;
        year: string;
        selected: string;
    };
}
export declare const calendarTheme: CalendarTheme;
export declare const legacyCalendarTheme: CalendarTheme;
