import type { TranslationMap } from "../types"; export declare class I18n { private locale; private translations; constructor(locale: string, customTranslations?: TranslationMap); setLocale(locale: string): void; t(key: string, params?: Record): string; } //# sourceMappingURL=i18n.d.ts.map