import React from 'react'; import type { LocaleConfig, LocaleConfigKey } from '../constants/locales'; declare const LocaleContext: React.Context; /** Get i18n locale text */ export declare const useLocaleText: (name: LocaleConfigKey, style?: 'narrow' | 'text') => string; export default LocaleContext;