import { Node } from '@tiptap/react'; export interface EmbeddedTweetOptions { HTMLAttributes: Record; } declare module '@tiptap/core' { interface Commands { embeddedTweet: { /** * Add an tweet embed */ setTweetEmbed: (options: { tweetId: string; }) => ReturnType; }; } } export declare const EmbeddedTweet: Node;