import TextBody from "../../reader/node/TextBody"; import { NodeContext } from "../../types/node"; import { ParagraphType, TextPropsType } from "../../types/text"; import { TextArea } from "./shape/common"; export declare function renderParagraph(paragraph: ParagraphType, levelIndex: number | undefined, ctx: NodeContext, options?: { isFirst?: boolean; isLast?: boolean; bodyProps?: TextPropsType; }): HTMLElement; export declare function renderTextBody(textBody: TextBody, textArea: TextArea, ctx: NodeContext): HTMLElement | null;