import type { Editor } from '@tiptap/vue-3'; import { Node } from '@tiptap/core'; declare module '@tiptap/core' { interface Commands { caution: { insertCaution: () => ReturnType; }; } } export declare const CautionHandlers: { caution: { canExecute: (editor: Editor) => boolean; execute: (editor: Editor) => import("@tiptap/core").ChainedCommands; isActive: (editor: Editor) => boolean; isDisabled: undefined; }; }; export declare const Caution: Node;