declare module '@tiptap/core' { interface Commands { insideLinks: { /** * Add an image */ insertInsideLinks: ({ thumbnail, title, id, type, url, }: { thumbnail?: string; title?: string; id?: string; type?: string; url?: string; }) => ReturnType; }; } } import { Node } from '@tiptap/core'; export declare const InsideLinks: Node; //# sourceMappingURL=insideLinks.d.ts.map