/// import type { EmbedContent } from "@prismicio/types-internal/lib/content"; import type { Node as ProseMirrorNode } from "@tiptap/pm/model"; import { type NodeViewProps } from "@tiptap/react"; interface EmbedNode extends ProseMirrorNode { attrs: { content?: EmbedContent; }; } export interface EmbedViewProps extends NodeViewProps { node: EmbedNode; } export declare function EmbedView(props: EmbedViewProps): JSX.Element; export {};