export interface LocalizationElements {
    days: string[];
    daysShort: string[];
    months: string[];
    monthsShort: string[];
    today: string;
    noEventsForThisDay: string;
}
export default LocalizationElements;
