declare module '@tiptap/core' { interface Commands { attachmentBlock: { setAttachmentBlock: (attributes: { src: string; }) => ReturnType; updateAttachmentBlock: (attributes: { src: string; }) => ReturnType; }; } } export declare const AttachmentBlock: any; export default AttachmentBlock;