import Decimal from 'decimal.js'; import type { IFormulaDataSource, FormulaValueOptions } from '../type'; import AbsFormulaFunction from '../base/function'; declare class FormulaFunctionROUND extends AbsFormulaFunction { arithmetic: boolean; mayChange: boolean; _execute(dataSource: IFormulaDataSource, options: FormulaValueOptions): Decimal | Promise; } export default FormulaFunctionROUND;