import type React from 'react'; import type { ReactPortal } from 'react'; /** * 将控件参数中的 ReactNode 转成 Element 格式,并返回对应的 DOM 和 Portal,其中 Portal 需要在对应的 React 组件中返回渲染 * @param reactNode */ export declare const useL7ComponentPortal: (reactNode?: React.ReactNode | null) => { portal: ReactPortal | null; dom: HTMLElement | undefined; };