import { Node } from '@tiptap/pm/model'; import { Editor } from '@tiptap/react'; import React from 'react'; interface VideoBlockViewProps { editor: Editor; getPos: () => number; node: Node & { attrs: { src: string; poster: string; assetId: string; playlistUrl?: string; }; }; updateAttributes: (attrs: Record) => void; } export declare const NewVideoBlockView: (props: VideoBlockViewProps) => React.JSX.Element; export default NewVideoBlockView; //# sourceMappingURL=VideoBlockV2.d.ts.map