import { Token } from '../type'; import type { IFormulaParam, IFormulaDataSource, FormulaValueOptions } from '../type'; import FormulaValue from '../base/value'; declare class FormulaParam extends FormulaValue implements IFormulaParam { name: string; isParam: boolean; constructor(token: Token, options?: FormulaValueOptions); _execute(dataSource: IFormulaDataSource, options: FormulaValueOptions, forArithmetic: boolean): any; } declare class FormulaParamValue extends FormulaParam { constructor(token: Token, value: any, options: FormulaValueOptions); updateValue(value: any, options?: FormulaValueOptions): void; _execute(dataSource: IFormulaDataSource, options: FormulaValueOptions, forArithmetic: boolean): any; } export { FormulaParamValue }; export default FormulaParam;