import { CacheUtilsService } from '@rh-support/utils'; import React from 'react'; interface IProps { children: JSX.Element | JSX.Element[]; fetchTrans: (lang: string) => Promise; } export type ITranslationResource = Record>>; interface ITranslationContext { setLang: (value: string) => void; fetchingTranslation: boolean; } export declare const SELECTED_TRANS_LANGUAGE = "selected_trans_language"; export declare const cacheTrans: CacheUtilsService; export declare const GlobalTranslationContext: React.Context; export declare function GlobalTranslationProvider(props: IProps): React.JSX.Element; export {}; //# sourceMappingURL=GlobalTranslationProvider.d.ts.map