export declare class Locale { delimiter: string; readonly language: string; private _translations; constructor(language: string, translations: Record); getTranslations(useFlat?: boolean): Locale['_translations']; addPrefixToKeys(prefix: string): Locale['_translations']; addTranslations(newTranslations: Record): Locale['_translations']; getEnum(transformKey?: (path: string[]) => string): string; getTranslationsCount(): number; }