import defaultLocale from '../locale/zh_CN'; import { GlobalConfigProvider } from './type'; export declare const defaultClassPrefix = "t"; type DefaultGlobalConfig = Partial; export declare const defaultGlobalConfig: DefaultGlobalConfig; export type Locale = typeof defaultLocale; export declare const defaultContext: { globalConfig: Partial; }; export type Config = typeof defaultContext; declare const ConfigContext: import("react").Context<{ globalConfig: Partial; }>; export default ConfigContext;