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 type Playlist = { id: string; title: string; description: string; poster: string; items: Item[]; }; export type Item = { src: string; type: string; label: string; width: number; height: number; }; export declare const VideoBlockView: (props: VideoBlockViewProps) => React.JSX.Element; export default VideoBlockView; //# sourceMappingURL=VideoBlockView.d.ts.map