/** * Loads translations for a specific locale and namespace with optimized caching * @param {string} _locale - The locale code (e.g., 'en', 'fr', 'zh') * @param {string} ns - The namespace for the translations * @returns {Promise>} Translations object or fallback translations on failure */ export declare function loadTranslations(_locale: string, _ns: string): Promise; /** * Creates or retrieves a cached i18next translation function for the specified locale and namespace * @param {string} locale - The locale code (e.g., 'en', 'fr') * @param {string} ns - The namespace for the translations * @returns {Promise} A translation function bound to the specified locale and namespace */ export declare const getTranslation: (locale: string, ns: string) => Promise; //# sourceMappingURL=i18n.d.ts.map