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 VideoBlockViewClientsideV2: ({ className, getVideoAspect, ...props }: VideoBlockViewProps) => React.JSX.Element; export default VideoBlockViewClientsideV2; //# sourceMappingURL=VideoBlockViewClientsideV2.d.ts.map