/** * CalloutNode — block node for callout/admonition boxes. * * Renders as `
` with * an icon span and editable content area. Supports four types: * info, warning, success, error. */ import { Node } from '@tiptap/core'; export type CalloutType = 'info' | 'warning' | 'success' | 'error'; export interface CalloutAttributes { type: CalloutType; } declare module '@tiptap/core' { interface Commands { callout: { /** Insert a callout block with the given type. */ insertCallout: (type?: CalloutType) => ReturnType; /** Change the type of the current callout. */ setCalloutType: (type: CalloutType) => ReturnType; }; } } export declare const CalloutNode: Node; //# sourceMappingURL=callout-node.d.ts.map