/** * @typedef {object} i18nType * @property {string[]} days * @property {string[]} daysShort * @property {string[]} daysMin * @property {string[]} months * @property {string[]} monthsShort * @property {string[]} meridiem * @property {string[]} suffix * @property {string} todayBtn * @property {string} clearBtn * @property {string} okBtn * @property {string} cancelBtn * @property {string} timeView * @property {string} backToDate */ /** * @type {i18nType} Arabic translation by Amine Laaraf */ export const ar_DZ: i18nType; /** * @type {i18nType} Arabic translation by Amine Laaraf */ export const ar_MR: i18nType; /** * @type {i18nType} Arabic translation by Amine Laaraf */ export const ar_YE: i18nType; /** * @type {i18nType} Czech translation */ export const cz: i18nType; /** * @type {i18nType} German translation by emroc GmbH */ export const de: i18nType; /** * @type {i18nType} English translation */ export const en: i18nType; /** * @type {i18nType} Spanish translation by markoan */ export const es: i18nType; /** * @type {i18nType} Persian (Farsi) translation by sadegh19b */ export const fa: i18nType; /** * @type {i18nType} French translation by Tuditi */ export const fr: i18nType; /** * @type {i18nType} Croatian translation by AntonioStipic */ export const hr: i18nType; /** * @type {i18nType} Hungarian translation by Tuditi */ export const hu: i18nType; /** * @type {i18nType} Indonesian translation */ export const id: i18nType; /** * @type {i18nType} Japanese translation by aska */ export const jp: i18nType; /** * @type {i18nType} Dutch Translation by Tuditi */ export const nl: i18nType; /** * @type {i18nType} Slovak Translation */ export const sk: i18nType; /** * @type {i18nType} Korean translation */ export const ko: i18nType; /** * @type {i18nType} Latin translation by PSYCHONOISE */ export const la: i18nType; /** * @type {i18nType} Brazilian portuguese translation by IgorDalepiane */ export const pt_BR: i18nType; /** * @type {i18nType} Russian translation by PSYCHONOISE */ export const ru: i18nType; /** * @type {i18nType} Italian translation by MarkNerdi */ export const it: i18nType; /** * @type {i18nType} Turkish translation by semih-ky */ export const tr: i18nType; /** * @type {i18nType} Swedish translation by brantsrasmus */ export const sv: i18nType; /** * @type {i18nType} Danish translation by brantsrasmus */ export const da: i18nType; /** * @type {i18nType} Thai translation by kodaicoder */ export const th: i18nType; /** * @type {i18nType} Chinese Simplified translation by shiroko */ export const zh_CN: i18nType; declare const _default: { ar_DZ: i18nType; ar_MR: i18nType; ar_YE: i18nType; cz: i18nType; da: i18nType; de: i18nType; en: i18nType; es: i18nType; fr: i18nType; hr: i18nType; hu: i18nType; id: i18nType; it: i18nType; jp: i18nType; ko: i18nType; la: i18nType; nl: i18nType; pt_BR: i18nType; ru: i18nType; sk: i18nType; sv: i18nType; th: i18nType; tr: i18nType; zh_CN: i18nType; }; export default _default; export type i18nType = { days: string[]; daysShort: string[]; daysMin: string[]; months: string[]; monthsShort: string[]; meridiem: string[]; suffix: string[]; todayBtn: string; clearBtn: string; okBtn: string; cancelBtn: string; timeView: string; backToDate: string; };