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