/** * Marked 파싱 중 HTML이 GFM에 의해 오염되는 것을 방지하기 위해 * HTML을 주석 플레이스홀더로 치환하고, 나중에 원래 HTML로 복원하는 유틸입니다. */ export declare class HtmlPlaceholder { private map; private idx; reset(): void; store(html: string): string; restore(html: string): string; }