export declare const DEFAULT_CLASS_PREFIX = "t"; export declare const DEFAULT_LOCALE = "zh-CN"; export interface Config { classPrefix?: string; locale?: 'zh-CN'; } declare const ConfigContext: { classPrefix: string; locale: string; }; export default ConfigContext;