export interface AccessibilityMessages { title: string; subtitle: string; close: string; fontSize: string; increaseFontSize: string; decreaseFontSize: string; resetFontSize: string; dyslexicFont: string; highContrast: string; highlightLinks: string; screenReader: string; readFullPage: string; stopReading: string; readOnHover: string; readOnHoverDesc: string; readOnSelect: string; readOnSelectDesc: string; resetAll: string; infoTitle: string; infoText: string; language: string; speechNotSupported: string; ariaOpenMenu: string; ariaCloseMenu: string; ariaToggleDyslexic: string; ariaToggleContrast: string; ariaToggleLinks: string; ariaToggleHover: string; ariaToggleSelect: string; } export type LocaleCode = 'es' | 'en'; export type AccessibilityLocaleMessages = { [key in LocaleCode]: AccessibilityMessages; };