/** * Fichier contenant toutes les constantes de textes utilisées dans les composants/composables CalendarMode. * Conservé pour compatibilité ascendante ; les textes sont désormais centralisés dans locales.ts. */ export declare const DATE_PICKER_MESSAGES: { LABEL_DEFAULT: "Date"; ERROR_REQUIRED: "La date est requise."; ERROR_INVALID_FORMAT: "Le format de la date est invalide."; ERROR_INVALID_DATE: "La date saisie est invalide."; ERROR_INVALID_FORMAT_WITH_FORMAT: (format: string) => string; ERROR_INCOMPLETE_DATE: "La date est incomplète."; ERROR_INVALID_RANGE: "La plage de dates est invalide."; ERROR_START_DATE_MISSING: "La date de début est manquante."; ERROR_END_DATE_MISSING: "La date de fin est manquante."; ERROR_END_BEFORE_START: "La date de fin doit être postérieure à la date de début."; ERROR_INVALID_FORMAT_START: "Format de date invalide pour la date de début"; ERROR_INVALID_FORMAT_END: "Format de date invalide pour la date de fin"; SUCCESS_VALID_DATE: "La date est valide."; ARIA_DATE_INPUT: "Date en cours de saisie"; ARIA_CALENDAR_BUTTON: "Ouvrir le calendrier"; ARIA_CALENDAR_MONTH_BUTTON: (month?: string) => string; ARIA_CALENDAR_YEAR_BUTTON: (year?: string) => string; ARIA_TODAY_BUTTON: "Aujourd'hui"; BUTTON_TODAY: "Aujourd'hui"; BUTTON_CLEAR: "Effacer"; BUTTON_CLOSE: "Fermer"; FORMAT_DEFAULT: "DD/MM/YYYY"; MONTH_NAMES: readonly ["janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre"]; DAY_NAMES: readonly ["dimanche", "lundi", "mardi", "mercredi", "jeudi", "vendredi", "samedi"]; DATE_SEPARATOR: "/"; RANGE_SEPARATOR: " - "; };