import { Node } from '@tiptap/core'; import { GeneralOptions } from '../../types'; declare module '@tiptap/core' { interface Commands { callout: { setCallout: (attrs?: { type?: string; title?: string; body?: string; }) => ReturnType; }; } } export interface CalloutOptions extends GeneralOptions { HTMLAttributes: Record; } export * from './components/RichTextCallout'; export declare const Callout: Node;