import { CodeBlockLowlightOptions } from '@tiptap/extension-code-block-lowlight'; export interface MermaidLimits { maxSourceBytes?: number; maxRenderMs?: number; } export interface CustomCodeBlockLowlightOptions extends CodeBlockLowlightOptions { mermaidLimits: MermaidLimits; } export declare const CustomCodeBlockLowlight: import('@tiptap/core').Node;