import { Node } from '@tiptap/core'; import './index.less'; export interface PdfOptions { url: string | undefined; } declare module '@tiptap/core' { interface Commands { pdf: { /** * Add an image */ setPdf: (attributes?: { pdfUrl: string; }) => ReturnType; }; } } export declare const Pdf: Node;