import { Editor } from '../core/Editor.js'; import { GetHtmlInput } from '@superdoc/document-api'; /** * Return the full document content as an HTML string. * * Unlike the markdown adapter (which uses its own AST pipeline), this delegates * directly to `editor.getHTML()` because there is no equivalent AST-based HTML * serialization pipeline. The DOM required by `getHTML()` is provided by the * CLI-injected `options.document` in headless sessions. * * @param editor - The editor instance. * @param input - Canonical getHtml input. * @returns HTML string representation of the document. */ export declare function getHtmlAdapter(editor: Editor, input: GetHtmlInput): string; //# sourceMappingURL=get-html-adapter.d.ts.map