import React from "react"; import type { EL } from "../../node/el"; export declare const HTMLMarginSpan: React.FC>; export type WrapperComponentProps = { htmlComponentID: string; childProps: HTMLComponentProps; ChildComponent: React.ComponentType; }; export interface HTMLFigData { url: string; type: string; } export type HTMLGetFigData = ((src: string) => HTMLFigData | null); export interface HTMLOptions { WrapComponent?: React.FC; renderControlEL?: boolean; getFigData?: HTMLGetFigData; renderPDFAsLink?: boolean; annotateLawtextRange?: boolean; options?: object; } export interface HTMLComponentProps { htmlOptions: HTMLOptions; } export declare function wrapHTMLComponent(htmlComponentID: TComponentID, Component: React.ComponentType

): React.FC

& { componentID: TComponentID; }; export declare const elProps: (el: EL, htmlOptions: HTMLOptions) => Record;