import { type PluggableList } from "unified"; /** * Renders markdown/MDX input to HTML string using unified processor chain * @param input - The markdown/MDX input string * @param remarkPlugins - Array of remark plugins to apply * @param rehypePlugins - Array of rehype plugins to apply * @returns Promise that resolves to HTML string */ export declare const renderHtml: (input: string, remarkPlugins: PluggableList, rehypePlugins: PluggableList) => Promise; /** * Creates a DOM container element from HTML string for testing * This creates an isolated container that doesn't affect the global document * @param html - HTML string to convert to DOM * @returns DOM container element */ export declare const createDOMFromHTML: (html: string) => HTMLElement; //# sourceMappingURL=test-utils.d.ts.map