///
export interface PisellContextType {
platform: 'h5' | 'pc' | 'ipad';
/** 货币符号 */
symbol?: string;
/** 当前语言环境 */
locale?: string;
/** 获取货币符号 */
getSymbolic?: () => string;
}
export declare const PisellContext: import("react").Context;
/**
* provider外获取当前全局配置
*/
declare class GlobalConfig {
private config;
constructor();
setConfig(config: PisellContextType): void;
getConfig(): PisellContextType;
}
export declare const globalConfig: GlobalConfig;
export default PisellContext;