import React, { CSSProperties } from 'react'; declare type RuleParamsItem = { paramId: string; valueCode?: string | string[]; originValueCode?: string; paramCode?: string; }; export interface DynamicDataContainerProps { className: string; style: CSSProperties; 'data-compid'?: string; engineRule?: Array<{ conditionId: string; rules?: RuleParamsItem[]; }>; name: string; visible?: boolean; readOnly?: boolean; boxSpace?: string; /** * 编码 */ dynamicCode: string; onValuesChange?: (formCode: string, changedFieldName: string, changedFieldValue: any, allValues: Record>) => void; } declare const DynamicDataContainer: React.ForwardRefExoticComponent>; export default DynamicDataContainer;