import { LocaleData } from './i18n'; declare const localeMap: Record Promise<{ default: LocaleData; }>>; /** * Loads a locale by its code. Returns the locale data, falling back to English * if the requested locale is not found. * * This function uses static imports for SSR compatibility, allowing bundlers * to properly analyze and include the necessary locale files. * * @param locale - The locale code (e.g., "en", "es", "fr") * @returns A promise that resolves to the locale data */ export declare function loadLocale(locale: string): Promise; /** * Returns an array of all available locale codes. */ export declare const availableLocales: Array; export {};