import { Node } from '@tiptap/react'; export interface AIWriterOptions { HTMLAttributes: Record; } declare module '@tiptap/core' { interface Commands { aiWriter: { /** * Add a prompt card */ insertAIWriter: (options: { prompt: string; content: string; tone: string; }) => ReturnType; }; } } export declare const AIWriter: Node;