export interface GenericLanguages { [key: string]: { [key: string]: string | { [key: string]: string; }; }; } export interface GenericTranslationsObject { [key: string]: string | { [key: string]: string; }; } export interface I18n { t(key: string, options?: Record): string; } export type I18nClient = I18n; //# sourceMappingURL=index.d.ts.map