export type HighlightProcessor = (code: string, lang: string, options?: Record<string, any>) => string;
export declare function createMarkdownParserMarked(highlight?: HighlightProcessor): (markdown: string) => string;
