export declare enum E_View { DAY = "day", WEEK = "week", MONTH = "month" } export declare enum E_CustomEvents { VIEW = "calendar.request.view", REPORT = "calendar.request.report" } export type Appointment = { id: string; name: string; date: string; keywords: string; comment?: string; createdAt?: string; updatedAt?: string; }; export type T_View = 'day' | 'week' | 'month'; export type T_LANG = 'fr' | 'en' | 'pt' | 'es' | 'eu' | 'ru' | 'uk'; export type T_Action = { icon?: boolean; text?: string; }; export type Configs = { viewEvent?: T_Action; reportEvent?: T_Action; searchPlaceholder?: string; eventName?: string; closeText?: string; nativeDatepicker?: boolean; todayButton?: boolean; firstDayOfWeek?: 0 | 1; }; export type IStartEndDates = { start: Date | string; end: Date | string; };