import "katex/dist/katex.min.css"; export declare const latexToHTMLString: (latex: string, inline?: boolean, external?: boolean) => { htmlString: string; error: undefined; } | { htmlString: string; error: string; };