import { LanguageStoreTranslations } from "./state.types"; import { WindowHapiQA } from "../_window/qa.types"; import { WindowHapiModuleWithConstructorArgs } from "../_window"; export type WindowHapiQALanguage = WindowHapiModuleWithConstructorArgs<{ setLocale: (locale: string) => string; setTranslationByLocaleAndKey: (locale: string, key: string, message: string) => LanguageStoreTranslations; }, { readonly qa: WindowHapiQA; }>; //# sourceMappingURL=qa.types.d.ts.map