export interface Translation { [locale: string]: TranslationKeys | null; } export interface TranslationKeys { [key: string]: string; } export type TranslationSagaOptions = { getTranslation?: (locale: string) => Promise; translations?: { [locale: string]: Translation; }; };