/** * @fileoverview BeatUI i18n Component Module * * Exports locale management components and utilities: * - {@link Locale} - Provider for managing the current locale and text direction * - {@link LocaleSelector} - Dropdown component for locale selection * - {@link makeI18nProvider} - Factory for creating i18n providers with dynamic translation loading * - {@link LocaleDirection} - Component that applies text direction class to the body element */ export * from './locale'; export * from './locale-selector'; export * from './make-i18nprovider';