import { Node } from "@tiptap/pm/model"; import React from "react"; interface VideoBlockViewProps { node: Node & { attrs: { src: string; poster: string; assetId: string; playlistUrl?: string; }; }; className?: string; getVideoAspect?: () => 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 VideoBlockViewClientside: (props: VideoBlockViewProps) => React.JSX.Element; export default VideoBlockViewClientside; //# sourceMappingURL=VideoBlockViewClientside.d.ts.map