import { MarkedOptions } from 'marked'; import * as i0 from "@angular/core"; /** * Service for converting Markdown into HTML. */ export declare class KbqMarkdownService { /** * Converts a given Markdown string into HTML. * NOTE! Method does not sanitize the output HTML string. * * @param markdown - The Markdown string to be converted. * @param options - Optional MarkedOptions to customize the parsing behavior. * @returns The transformed HTML string. */ parseToHtml(markdown: string, options?: MarkedOptions): string; private transform; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }