import { Context } from "@videojs/element/context"; import { Locale, Translator } from "@videojs/core/i18n"; //#region src/i18n/context.d.ts declare const I18N_CONTEXT_KEY: unique symbol; type I18nContextValue = { translator: Translator; locale: Locale; }; /** Per-factory context identity (see {@link createI18n}). */ type I18nContext = Context; /** * The default HTML context carrying the active translator and locale. * * @public */ declare const i18nContext: Context; //#endregion export { I18N_CONTEXT_KEY, I18nContext, I18nContextValue, i18nContext }; //# sourceMappingURL=context.d.ts.map