import { Node } from '@tiptap/vue-3'; export interface BookmarkAttribute { src: string; title: string; description: string; img: string; favicon: string; } declare module '@tiptap/core' { interface Commands { bookmark: { setBookmark: (state: BookmarkAttribute) => ReturnType; }; } } export declare const Bookmark: Node;