import type { CSSProperties } from 'react'; import React from 'react'; import type { Application } from '../specs'; export type LIRenderProps = { /** 类名 */ className?: string; /** 行内样式 */ style?: CSSProperties; /** 应用配置 */ config: Application; /** 子组件 */ children?: React.ReactNode; }; declare const LIRender: React.FC; export default LIRender;