import type { JSXElementConstructor, ReactElement, ReactNode } from 'react'; export interface LocaleConfig { code: string; localName: string; name: string; langDir: string; dateFormat: string; hrefLang: string; enabled: boolean; } export type FormattedMessage = | string | ReactElement> | ReadonlyArray;