import { FormulaValues, TokenType, Token } from '../type'; import type { IFormulaDataSource, FormulaValueOptions } from '../type'; import FormulaValue from '../base/value'; declare class FormulaRef extends FormulaValue { tokenType: TokenType; refs: FormulaValues; order: number; constructor(token: Token, refs: FormulaValues, options?: FormulaValueOptions); _execute(dataSource: IFormulaDataSource, options: FormulaValueOptions, forArithmetic: boolean): any; } export default FormulaRef;