import { IStoreKey } from '../constants/index'; import { RCManager } from '../rc/rc'; export declare const ConfigManager: RCManager; /** * 获取配置管理 */ export declare const getConfig: () => RCManager; /** * 获取配置中的key */ export declare const getConfigValue: (key?: IStoreKey) => Promise; export declare const getConfigValueSync: (key?: IStoreKey) => any;