export type TranslationLanguage = 'en' | (string & {}); export type TranslationSheet = Record; export type TranslationsForLanguage = Record; export type TranslationsMap = Record; export type TranslationsRegistry = Record; export type TranslatorFunction = (key: string, options?: Record) => string;