import { LanguageSupportedLocale } from "./enums"; export type LanguageStoreLocaleTranslations = Record; export type LanguageStoreTranslations = Record; export type LanguageState = { locale: LanguageSupportedLocale | string; translations: LanguageStoreTranslations; }; //# sourceMappingURL=state.types.d.ts.map