export declare type TLegendColor = '#ebedf0' | '#c6e48b' | '#7bc96f' | '#239a3b' | '#196127'; export interface ICalendarOption { date: Date | string; number?: number; color?: TLegendColor; } export declare type TCalendarPanel = ICalendarOption[] | string[]; export declare type TTheme = string | string[] | number[] | object;