import { Node } from '@tiptap/core'; export type CalloutVariant = 'info' | 'tip' | 'warning' | 'danger'; export interface CalloutOptions { variants: CalloutVariant[]; } declare module '@tiptap/core' { interface Commands { callout: { setCallout: (attributes?: { variant?: CalloutVariant; }) => ReturnType; toggleCallout: (attributes?: { variant?: CalloutVariant; }) => ReturnType; }; } } export declare const CommonPubCallout: Node; //# sourceMappingURL=callout.d.ts.map