export = markdownToInlineHtml; /** * Transforms a string of inline markdown into a string of inline HTML * * @param {string} markdown - A string of markdown. Must only contain inline markdown elements. If block elements are detected, this function will throw an error. */ declare function markdownToInlineHtml(markdown: string): Promise;