import type { HTMLComponents } from './types'; export type RenderHTMLOptions = { components?: HTMLComponents<'permissive', {}>; }; export type HTMLContextValue = { renderHTML: (html: string, overrides?: HTMLComponents<'permissive', {}> | RenderHTMLOptions) => string; }; export declare const setHTMLContext: (value: HTMLContextValue) => void; export { setHTMLContext as setIntlayerHTML }; export declare const getHTMLContext: () => HTMLContextValue;