/** * 配置管理器组件 * 负责加载和管理应用配置 */ /** @type {{ config: { apiBasePath: string, pageSize: number, path: string }, configLoaded: boolean, getApiUrl: (endpoint: string) => string },hash:string} */ declare const ConfigManager: { config: { apiBasePath: string; pageSize: number; path: string; }; configLoaded: boolean; getApiUrl: (endpoint: string) => string; };