import { type RehypePunctilioOptions } from "./rehype.js"; export interface HtmlOptions extends RehypePunctilioOptions { /** * Whether to parse the input as an HTML fragment (no implicit ``, * ``, or `` wrapping). Set to `false` to parse a complete * document. Default: `true`. */ fragment?: boolean; } /** Option keys handled by the HTML pipeline (parser plus rehype plugin) * rather than `transform()`. */ export declare const HTML_ONLY_OPTION_KEYS: readonly string[]; /** Runtime list of valid `transformHtml` option keys. */ export declare const HTML_OPTION_KEYS: readonly string[]; /** @internal */ export declare function clearProcessorCache(): void; export declare function transformHtml(input: string, options?: HtmlOptions): Promise; //# sourceMappingURL=html.d.ts.map