import { Node } from "@tiptap/pm/model"; import { Editor } from "@tiptap/react"; import React from "react"; interface AudioBlockViewProps { 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 AudioBlockView: (props: AudioBlockViewProps) => React.JSX.Element; export default AudioBlockView; //# sourceMappingURL=AudioBlockView.d.ts.map