import type { RefComponentMountAdapter, RefComponentMountParams, RefComponentMountResult } from '../types/refComponentMount'; import type { ModalRef } from '../types/modal'; /** * 默认 Web 挂载:创建/查找 DOM 容器并用 react-dom 渲染。 * @param params - 挂载参数 * @returns ref 与 destroy */ declare function mountWithDom, P extends Record = Record>(params: RefComponentMountParams): Promise>; /** 内置 DOM + react-dom 挂载适配器 */ declare const defaultDomMountAdapter: RefComponentMountAdapter; export { defaultDomMountAdapter, mountWithDom, };