import { marked } from 'marked';
import { MarkedContentHighlighter } from './marked-content-highlighter.js';
import { WithMarkedOptions } from './index.js';
export declare class MarkedSetupService {
    private readonly options?;
    private readonly highlighter?;
    private readonly marked;
    constructor(options?: WithMarkedOptions | undefined, highlighter?: MarkedContentHighlighter | undefined);
    getMarkedInstance(): typeof marked;
}
