/** * @description * Webinar Event constants. */ export declare const ewEventTypes: { LIVE: string; AUTOMATED: string; EVERGREEN: string; }; /** * @description * Webinar Event constants. */ export declare const ewEventScheduleTypes: { SINGLE_EVENT: string; RECURRING_EVENT: string; }; /** * @description * Recurring event schedule types. */ export declare const recurringScheduleTypes: { REPEAT_DAILY: string; REPEAT_WEEKLY: string; REPEAT_SPRCIFIC_DATES: string; }; /** * @description * Number of days available Options. */ export declare const daysAvailableSelectOptions: { 1: string; 2: string; 3: string; 4: string; 5: string; 6: string; 7: string; 8: string; 9: string; 10: string; }; /** * @description * Live Chat API ON/OFF enum. */ export declare const ewLiveChat: { ON: string; OFF: string; }; /** * @description * Private Live Chat API ON/OFF enum. */ export declare const ewPrivateChat: { ON: string; OFF: string; }; /** * @description * Private Live Chat API ON/OFF enum. */ export declare const ewContactBoxTypes: { EWBOX: number; THIRDPARTY: number; }; /** * Multiple event time fields limit. */ export declare const addEventTimeLimit = 3;