import { default as enLocale } from '../../locales/en.json'; import { Locale } from '../../types/common/Locale.type'; export type TranslationStrings = typeof enLocale; export declare class TranslationService { private locale; private loadedLocales; constructor(defaultLocale?: Locale); setLocale(locale: Locale): void; getLocale(): Locale; translate(key: string, values?: Record): string; private getNestedTranslation; private findNestedValue; private interpolate; } //# sourceMappingURL=Translation.service.d.ts.map