import { Ctx } from '@milkdown/kit/ctx'; import { useNodeViewFactory } from '@prosemirror-adapter/react'; /** * React component for rendering video blocks in the editor. * Uses prosemirror-adapter to bridge ProseMirror and React. */ export declare const VideoNodeView: () => import("react/jsx-runtime").JSX.Element; /** * Configure the video NodeView with the editor. * Must be called during editor setup. */ export declare function configureVideoNodeView(ctx: Ctx, nodeViewFactory: ReturnType): void;