import React from 'react'; import { NodeViewProps } from '@tiptap/react'; import './index.less'; /** * Iframe 节点使用独立的 node view 渲染,避免 iframe 在 contenteditable 中抢占编辑焦点。 */ declare const IframeView: React.FC; export default IframeView;