import { FC } from 'react'; import { RichNode } from '../parser'; import { RichHTMLContext } from './type'; export interface RendererProps { /** * 节点列表 */ node: RichNode; /** * 上下文 */ context: RichHTMLContext; } /** * 渲染子节点 * @param nodes * @param context * @returns */ export declare function renderNodes(nodes: RichNode[], context: RichHTMLContext): JSX.Element[]; /** * 渲染器 */ export declare const Renderer: FC; //# sourceMappingURL=Renderer.d.ts.map