import React from "react"; import { Klass, LexicalNode } from "lexical"; import { CSSObject } from "@emotion/react"; import { EditorTheme, ThemeEmotionMap } from "@webiny/lexical-theme"; import { LexicalValue } from "../types"; interface LexicalHtmlRendererProps { nodes?: Klass[]; value: LexicalValue | null; theme: Partial; themeEmotionMap?: ThemeEmotionMap; themeStylesTransformer?: (cssObject: Record) => CSSObject; } export declare const LexicalHtmlRenderer: ({ nodes, value, ...props }: LexicalHtmlRendererProps) => React.JSX.Element; export {};