export type SchedulerItem = { startDate: string; endDate: string; theme: string; }; export type Theme = { tailwind?: { [colorKey: string]: string; }; antd?: { light: Record; dark: Record; }; }; export type Themes = { [themeName: string]: Theme; }; export type RemoteTheme = { scheduler: SchedulerItem[]; themes: Themes; }; export declare const REMOTE_THEME_URL = "https://cdn.eduzzcdn.com/theme"; export declare const THEME_REFRESH_MINUTES_INTERVAL = 60; export declare const getCurrentTheme: (remoteTheme: RemoteTheme) => string; export declare const fetchRemoteTheme: () => Promise;