import React from 'react'; import { FloatWindowManagerHooks } from '@lingxiteam/types'; export interface FloatWindowManagerProps { parseNodeBefore?: any; appId: string; } /** * x悬浮窗口管理器 * 每一个动态渲染页面需要引入一个弹窗管理器组件【只应引入一个】,他会暴露出ref供动态渲染页面使用 * @module ModalManager */ declare const FloatWindowManager: React.ForwardRefExoticComponent>; export default FloatWindowManager;