import type { BytemdPlugin } from 'bytemd'; import type { MermaidConfig } from 'mermaid'; type Locale = { mermaid: string; flowchart: string; sequence: string; class: string; state: string; er: string; uj: string; gantt: string; pie: string; mindmap: string; timeline: string; }; export interface BytemdPluginMermaidOptions extends MermaidConfig { locale?: Partial; } export default function mermaid({ locale: _locale, ...mermaidConfig }?: BytemdPluginMermaidOptions): BytemdPlugin; export {};