import { default as React } from 'react'; import { PageConfig } from './configParser'; export interface RuntimeRendererProps { /** 页面配置 JSON */ pageConfig: PageConfig | string; /** 会话 ID */ sessionId?: string; /** 是否开发模式 */ develop?: boolean; /** 自定义主题 */ theme?: any; /** 加载状态 */ loading?: boolean; /** 错误处理 */ onError?: (error: Error) => void; } /** * RuntimeRenderer - 渲染引擎组件 * 将 GrapesJS 生成的页面配置渲染为 React 组件树 */ export declare const RuntimeRenderer: React.FC; export default RuntimeRenderer;