/** * 获取微应用上下文 */ export declare function useAlfaMicroAppContext(): import("./types").IContextProps; /** * 监听微应用事件 * @param eventName 事件名称 * @param cb 事件回调 */ export declare function useMicroAppEvent(eventName: string, cb: (args: any) => void): void; /** * 外部链接导航 hook * @returns {Function} */ export declare function useExternalLink(): (url: any) => void;