import ts from "typescript"; import { ReactHelper } from "./helper.react"; export declare class ReactRender { private helper; private parentRef; constructor(helper: ReactHelper); getElementById(entityId: string): ts.JsxElement | null; setElementById(entityId: string, element: any): void; getJsxAttribute(entityId: string, name: string): ts.JsxAttribute | null; appendJsxAttribute(entityId: string, name: string, value: ts.JsxExpression | ts.StringLiteral): void; appendRootState(name: string, defaultValue: unknown): void; appendRootCallback(name: string, callback: Function | string): void; appendRootVariable(name: string, initilizer: ts.Expression): void; appendJsxStyles(entityId: string, value: Record): void; }