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