import markdownit from 'markdown-it'; export declare class Markdown { md: markdownit; ready: Promise; constructor(enhancerPath?: string); unload?: () => void; initialize: (enhancerPath?: string) => Promise; render: (content: string, filepath?: string) => string; }