import i18n from 'i18next'; import type { EditorLocale } from './locales/en'; export { type EditorLocale }; /** Register translations for a plugin namespace. Call before the app mounts. */ export declare function addTranslations(lng: string, ns: string, resources: object): void; export declare function changeLanguage(lng: string): void; export declare function getCurrentLanguage(): string; export default i18n;