import { Context } from 'react'; import type { Locale } from '../locale/lang/base'; export declare type ConfigProviderContextState = { locale: Locale; }; export declare const INITIAL_STATE: ConfigProviderContextState; declare const ConfigProvider: Context; export default ConfigProvider;