import { DuetLanguage } from "../../common-types"; type MonthsLabels = [string, string, string, string, string, string, string, string, string, string, string, string]; type DayLabels = [string, string, string, string, string, string, string]; type I18nText = { buttonLabel: string; nextMonthLabel: string; prevMonthLabel: string; monthSelectLabel: string; yearSelectLabel: string; keyboardInstruction: string; closeLabel: string; dayLabels: DayLabels; selected: string; monthLabels: MonthsLabels; monthLabelsShort: MonthsLabels; formatterShort: Intl.DateTimeFormat; formatterLong: Intl.DateTimeFormat; }; declare const i18n: Record; export default i18n;