import { ParamConfig } from '../interface'; import { Field } from '../components/formFields/common'; export interface StatementConfig { statement: string; params: { field: string; data: ParamConfig; }[]; } export default function StatementHelper(config: StatementConfig | undefined, datas: { record?: object; data: object[]; step: { [field: string]: any; }; extraContainerPath?: string; }, _this?: Field): string;