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