/** * @fileoverview BeatUI I18n Module * * Provides the built-in internationalization system for BeatUI components. * * Exports: * - {@link defaultMessages} - Default English messages for all BeatUI components * - {@link defaultLocale} - The default locale code (`'en'`) * - {@link BeatUIMessages} - Type representing the complete message shape * - {@link BeatUII18n} - The i18n provider for BeatUI component translations */ export * from './default'; export * from './translations';