import type { IFormulaDataSource, FormulaValueOptions } from '../type'; import AbsFormulaFunction from '../base/function'; declare class FormulaFunctionEVAL extends AbsFormulaFunction { mayChange: boolean; _execute(dataSource: IFormulaDataSource, options: FormulaValueOptions, forArithmetic?: boolean): any; } export default FormulaFunctionEVAL;