export type ThemeMode = "light" | "dark" | "auto"; export interface CalendarTheme { mode?: ThemeMode; background?: string; text?: string; textSecondary?: string; textDisabled?: string; primary?: string; primaryText?: string; selectedBackground?: string; selectedText?: string; todayBackground?: string; todayText?: string; weekendText?: string; disabledBackground?: string; disabledText?: string; rangeBackground?: string; rangeText?: string; borderColor?: string; headerBackground?: string; headerText?: string; eventDot?: string; } export declare const LIGHT_THEME: CalendarTheme; export declare const DARK_THEME: CalendarTheme;