import type { Language, resources } from './resources'; import type { RecursiveKeyOf } from './types'; type DefaultLocale = typeof resources.en.translation; export type TxKeyPath = RecursiveKeyOf; export declare const LOCAL = "local"; export declare const getLanguage: () => string | undefined; export declare const translate: ((key: TxKeyPath, options?: any) => string) & import("lodash").MemoizedFunction; export declare const changeLanguage: (lang: Language) => void; export declare const useSelectedLanguage: () => { language: Language; setLanguage: (lang: Language) => void; }; export {}; //# sourceMappingURL=utils.d.ts.map