/** * Resolve mermaid ASCII from fenced block source text. * Returns null when rendering fails, while memoizing failures to avoid repeated work. */ export declare function resolveMermaidAscii(source: string): string | null; /** * Clear the mermaid cache. */ export declare function clearMermaidCache(): void;