export declare type LanguageType = 'en'; export declare type LocaleOptionsType = { [key: string]: string | number; }; export interface TranslationsType { [key: string]: string; } export interface LocalesType { [key: string]: TranslationsType; } export interface GetTranslationType { (key: keyof TranslationsType, options?: LocaleOptionsType): string; } export interface Global$tVUType { 'locale': LanguageType; 't': GetTranslationType; }