import { FormulaValues } from '../type'; import type { IFormulaDataSource, FormulaValueOptions, IFormulaValue } from '../type'; type WalkEvent = ((itemValue: T | T[], index: number, isArray: boolean, isFirst: boolean) => void); declare function walkValues(owner: IFormulaValue, params: FormulaValues, dataSource: IFormulaDataSource, options: FormulaValueOptions, onWalk: WalkEvent, forArithmetic?: boolean): void | Promise; export { walkValues };