import { Node } from '@tiptap/core'; export * from './components/RichTextExcalidraw'; export interface IExcalidrawAttrs { defaultShowPicker?: boolean; createUser?: any; width?: number | string; height?: number; data?: Record; } declare module '@tiptap/core' { interface Commands { excalidraw: { setExcalidraw: (attrs?: IExcalidrawAttrs) => ReturnType; }; } } export declare const Excalidraw: Node;