/** * Content get/set/clean logic. */ export declare class ContentManager { private editorArea; constructor(editorArea: HTMLElement); getContent(): string; setContent(html: string): void; /** * Converts clean HTML (getContent output or pasted normalized HTML) into * the editor's live DOM structure: code blocks, table wrappers, task lists, * callout contenteditable restoration. * * Called by setContent() and by the paste handler after normalization. */ applyStructure(container: HTMLElement): void; } //# sourceMappingURL=content.d.ts.map