/** * 获取console全局的config参数 window.AS_CONSOLE_CONFIG * @param key */ export declare const getConsoleConfig: (key?: string) => string; /** * 获取 ALIYUN_CONSOLE_CONFIG 参数 * @param key */ export declare const getAliyunConfig: (key?: string) => string; /** * 获取页面数据配置参数 * @param key */ export declare const getPageConfig: (key?: string) => any; /** * 获取渠道开关 * @param id 开关id */ export declare const getChannelFeature: (id: string) => any; /** * 获取渠道链接 * @param id 链接id * @param params 替换参数 */ export declare const getChannelLink: (id: string, params?: any) => string; /** * 获取微应用的配置信息 * @param key */ export declare const getMicroApp: (key?: string) => any;